diff --git a/README.md b/README.md
index d459531..44485e9 100644
--- a/README.md
+++ b/README.md
@@ -10,16 +10,16 @@ A web-based esoteric correspondence app for tarot, astrology, calendars, symbols
## Features
- Correspondence explorer for multiple occult/esoteric systems.
-- Tarot deck support via a generated deck registry.
-- Pluggable deck structure using per-deck `deck.json` manifests.
-- Fast local static serving with `http-server`.
+- Tarot deck support served by the TaroTime API.
+- Fast local static shell serving with `http-server`.
## Quick Start
1. Install Node.js: https://nodejs.org/en/download
-2. Clone this repository.
-3. Install dependencies.
-4. Start the app.
+2. Start the API and confirm its base URL and API key.
+3. Clone this repository.
+4. Install dependencies.
+5. Start the client.
```powershell
git clone https://code.glowers.club/goyimnose/taroTime.git
@@ -28,7 +28,16 @@ npm install
npm run start
```
-The app opens in your browser (typically at `http://127.0.0.1:8080`).
+The app opens in your browser (typically at `http://127.0.0.1:8080`) and stays in shell mode until you enter a reachable API base URL and a valid API key.
+
+For local development with the current API configuration:
+
+```powershell
+API Base URL: http://localhost:3100
+API Key: aaa
+```
+
+The current API also accepts `bbb` as a valid key.
@@ -36,10 +45,8 @@ The app opens in your browser (typically at `http://127.0.0.1:8080`).
| Command | Description |
| --- | --- |
-| `npm run start` | Generate deck registry, then serve the app locally and open `index.html`. |
+| `npm run start` | Serve the static client locally and open `index.html`. |
| `npm run dev` | Alias of `npm run start`. |
-| `npm run generate:decks` | Rebuild `asset/tarot deck/decks.json`. |
-| `npm run validate:decks` | Strict validation only (no write), exits on manifest/file problems. |
## Project Links
diff --git a/app.js b/app.js
index a3cad0e..97d6909 100644
--- a/app.js
+++ b/app.js
@@ -72,6 +72,11 @@ const latEl = document.getElementById("lat");
const lngEl = document.getElementById("lng");
const nowSkyLayerEl = document.getElementById("now-sky-layer");
const nowPanelEl = document.getElementById("now-panel");
+const connectionGateEl = document.getElementById("connection-gate");
+const connectionGateBaseUrlEl = document.getElementById("connection-gate-base-url");
+const connectionGateApiKeyEl = document.getElementById("connection-gate-api-key");
+const connectionGateStatusEl = document.getElementById("connection-gate-status");
+const connectionGateConnectEl = document.getElementById("connection-gate-connect");
const nowElements = {
nowHourEl: document.getElementById("now-hour"),
@@ -230,6 +235,7 @@ appRuntime.init?.({
});
let currentSettings = { ...DEFAULT_SETTINGS };
+let hasRenderedConnectedShell = false;
function setStatus(text) {
if (!statusEl) {
@@ -239,6 +245,121 @@ function setStatus(text) {
statusEl.textContent = text;
}
+function getConnectionSettings() {
+ return window.TarotAppConfig?.getConnectionSettings?.() || {
+ apiBaseUrl: "",
+ apiKey: ""
+ };
+}
+
+function syncConnectionGateInputs() {
+ const connectionSettings = getConnectionSettings();
+
+ if (connectionGateBaseUrlEl) {
+ connectionGateBaseUrlEl.value = String(connectionSettings.apiBaseUrl || "");
+ }
+
+ if (connectionGateApiKeyEl) {
+ connectionGateApiKeyEl.value = String(connectionSettings.apiKey || "");
+ }
+}
+
+function setConnectionGateStatus(text, tone = "default") {
+ if (!connectionGateStatusEl) {
+ return;
+ }
+
+ connectionGateStatusEl.textContent = text || "";
+ if (tone && tone !== "default") {
+ connectionGateStatusEl.dataset.tone = tone;
+ } else {
+ delete connectionGateStatusEl.dataset.tone;
+ }
+}
+
+function showConnectionGate(message, tone = "default") {
+ syncConnectionGateInputs();
+ if (connectionGateEl) {
+ connectionGateEl.hidden = false;
+ }
+ document.body.classList.add("connection-gated");
+ setConnectionGateStatus(message, tone);
+}
+
+function hideConnectionGate() {
+ if (connectionGateEl) {
+ connectionGateEl.hidden = true;
+ }
+ document.body.classList.remove("connection-gated");
+}
+
+function getConnectionSettingsFromGate() {
+ return {
+ apiBaseUrl: String(connectionGateBaseUrlEl?.value || "").trim(),
+ apiKey: String(connectionGateApiKeyEl?.value || "").trim()
+ };
+}
+
+async function ensureConnectedApp(nextConnectionSettings = null) {
+ if (nextConnectionSettings) {
+ window.TarotAppConfig?.updateConnectionSettings?.(nextConnectionSettings);
+ }
+
+ syncConnectionGateInputs();
+
+ const configuredConnection = getConnectionSettings();
+ if (!configuredConnection.apiBaseUrl) {
+ showConnectionGate("Enter an API Base URL to load TaroTime.", "error");
+ return false;
+ }
+
+ showConnectionGate("Connecting to the API...", "pending");
+
+ const probeResult = await window.TarotDataService?.probeConnection?.();
+ if (!probeResult?.ok) {
+ showConnectionGate(probeResult?.message || "Unable to reach the API.", "error");
+ return false;
+ }
+
+ hideConnectionGate();
+ if (!hasRenderedConnectedShell) {
+ sectionStateUi.setActiveSection?.("home");
+ hasRenderedConnectedShell = true;
+ }
+
+ setConnectionGateStatus("Connected.", "success");
+ setStatus(`Connected to ${configuredConnection.apiBaseUrl}.`);
+ await appRuntime.renderWeek?.();
+ return true;
+}
+
+function bindConnectionGate() {
+ syncConnectionGateInputs();
+
+ if (connectionGateConnectEl) {
+ connectionGateConnectEl.addEventListener("click", () => {
+ void ensureConnectedApp(getConnectionSettingsFromGate());
+ });
+ }
+
+ [connectionGateBaseUrlEl, connectionGateApiKeyEl].forEach((element) => {
+ if (!element) {
+ return;
+ }
+
+ element.addEventListener("keydown", (event) => {
+ if (event.key === "Enter") {
+ event.preventDefault();
+ void ensureConnectedApp(getConnectionSettingsFromGate());
+ }
+ });
+ });
+
+ document.addEventListener("connection:updated", () => {
+ syncConnectionGateInputs();
+ });
+}
+
window.TarotNumbersUi?.init?.({
getReferenceData: () => appRuntime.getReferenceData?.() || null,
getMagickDataset: () => appRuntime.getMagickDataset?.() || null,
@@ -331,6 +452,7 @@ settingsUi.init?.({
},
onSyncSkyBackground: (geo, force) => homeUi.syncNowSkyBackground?.(geo, force),
onStatus: (text) => setStatus(text),
+ onConnectionSaved: async () => ensureConnectedApp(),
getActiveSection: () => sectionStateUi.getActiveSection?.() || "home",
onReopenActiveSection: (section) => sectionStateUi.setActiveSection?.(section),
onRenderWeek: () => appRuntime.renderWeek?.()
@@ -412,6 +534,5 @@ window.TarotNatal = {
const initialSettings = settingsUi.loadInitialSettingsAndApply?.() || { ...DEFAULT_SETTINGS };
homeUi.syncNowSkyBackground?.({ latitude: initialSettings.latitude, longitude: initialSettings.longitude }, true);
-sectionStateUi.setActiveSection?.("home");
-
-void appRuntime.renderWeek?.();
+bindConnectionGate();
+void ensureConnectedApp();
diff --git a/app/app-config.js b/app/app-config.js
new file mode 100644
index 0000000..44698a0
--- /dev/null
+++ b/app/app-config.js
@@ -0,0 +1,132 @@
+(function () {
+ const apiBaseUrlStorageKey = "tarot-time-api-base-url";
+ const apiKeyStorageKey = "tarot-time-api-key";
+ const defaultApiBaseUrl = "";
+
+ function normalizeBaseUrl(value) {
+ return String(value || "")
+ .trim()
+ .replace(/\/+$/, "");
+ }
+
+ function normalizeApiKey(value) {
+ return String(value || "").trim();
+ }
+
+ function normalizeConnectionSettings(settings) {
+ return {
+ apiBaseUrl: normalizeBaseUrl(settings?.apiBaseUrl),
+ apiKey: normalizeApiKey(settings?.apiKey)
+ };
+ }
+
+ function persistConnectionSettings(settings) {
+ let didPersist = true;
+
+ try {
+ const params = new URLSearchParams(window.location.search || "");
+ const queryValue = String(params.get("apiBaseUrl") || "").trim();
+ const queryApiKey = String(params.get("apiKey") || params.get("api_key") || "").trim();
+
+ if (queryValue) {
+ window.localStorage.setItem(apiBaseUrlStorageKey, normalizeBaseUrl(queryValue));
+ }
+
+ if (queryApiKey) {
+ window.localStorage.setItem(apiKeyStorageKey, normalizeApiKey(queryApiKey));
+ }
+
+ if (settings.apiBaseUrl) {
+ window.localStorage.setItem(apiBaseUrlStorageKey, settings.apiBaseUrl);
+ } else {
+ window.localStorage.removeItem(apiBaseUrlStorageKey);
+ }
+
+ if (settings.apiKey) {
+ window.localStorage.setItem(apiKeyStorageKey, settings.apiKey);
+ } else {
+ window.localStorage.removeItem(apiKeyStorageKey);
+ }
+ } catch (_error) {
+ didPersist = false;
+ }
+
+ return didPersist;
+ }
+
+ function readConfiguredConnectionSettings() {
+ try {
+ const params = new URLSearchParams(window.location.search || "");
+ const queryValue = String(params.get("apiBaseUrl") || "").trim();
+ const queryApiKey = String(params.get("apiKey") || params.get("api_key") || "").trim();
+
+ if (queryValue) {
+ window.localStorage.setItem(apiBaseUrlStorageKey, normalizeBaseUrl(queryValue));
+ }
+
+ if (queryApiKey) {
+ window.localStorage.setItem(apiKeyStorageKey, normalizeApiKey(queryApiKey));
+ }
+
+ const storedBaseUrl = String(window.localStorage.getItem(apiBaseUrlStorageKey) || "").trim();
+ const storedApiKey = String(window.localStorage.getItem(apiKeyStorageKey) || "").trim();
+ return normalizeConnectionSettings({
+ apiBaseUrl: storedBaseUrl,
+ apiKey: storedApiKey
+ });
+ } catch (_error) {
+ return normalizeConnectionSettings({
+ apiBaseUrl: "",
+ apiKey: ""
+ });
+ }
+ }
+
+ const initialConnectionSettings = readConfiguredConnectionSettings();
+
+ window.TarotAppConfig = {
+ ...(window.TarotAppConfig || {}),
+ apiBaseUrl: initialConnectionSettings.apiBaseUrl,
+ apiKey: initialConnectionSettings.apiKey,
+ getApiBaseUrl() {
+ return normalizeBaseUrl(this.apiBaseUrl);
+ },
+ getApiKey() {
+ return normalizeApiKey(this.apiKey);
+ },
+ isConnectionConfigured() {
+ return Boolean(this.getApiBaseUrl());
+ },
+ getConnectionSettings() {
+ return {
+ apiBaseUrl: this.getApiBaseUrl(),
+ apiKey: this.getApiKey()
+ };
+ },
+ updateConnectionSettings(nextSettings = {}) {
+ const previous = this.getConnectionSettings();
+ const current = normalizeConnectionSettings({
+ ...previous,
+ ...nextSettings
+ });
+ const didPersist = persistConnectionSettings(current);
+
+ this.apiBaseUrl = current.apiBaseUrl;
+ this.apiKey = current.apiKey;
+
+ if (previous.apiBaseUrl !== current.apiBaseUrl || previous.apiKey !== current.apiKey) {
+ document.dispatchEvent(new CustomEvent("connection:updated", {
+ detail: {
+ previous,
+ current: { ...current }
+ }
+ }));
+ }
+
+ return {
+ ...current,
+ didPersist
+ };
+ }
+ };
+})();
\ No newline at end of file
diff --git a/app/app-runtime.js b/app/app-runtime.js
index 7b089f6..c3d2553 100644
--- a/app/app-runtime.js
+++ b/app/app-runtime.js
@@ -77,7 +77,7 @@
clearInterval(nowInterval);
}
- const tick = () => {
+ const tick = async () => {
if (!referenceData || !currentGeo || renderInProgress) {
return;
}
@@ -91,12 +91,17 @@
return;
}
- config.services.updateNowPanel?.(referenceData, currentGeo, config.nowElements, currentTimeFormat);
- config.calendarVisualsUi?.applyDynamicNowIndicatorVisual?.(now);
+ try {
+ await config.services.updateNowPanel?.(referenceData, currentGeo, config.nowElements, currentTimeFormat);
+ config.calendarVisualsUi?.applyDynamicNowIndicatorVisual?.(now);
+ } catch (_error) {
+ }
};
- tick();
- nowInterval = setInterval(tick, 1000);
+ void tick();
+ nowInterval = setInterval(() => {
+ void tick();
+ }, 1000);
}
async function renderWeek() {
@@ -138,7 +143,7 @@
applyCenteredWeekWindow(anchorDate);
- const events = config.services.buildWeekEvents?.(currentGeo, referenceData, anchorDate) || [];
+ const events = await config.services.buildWeekEvents?.(currentGeo, referenceData, anchorDate) || [];
config.calendar?.clear?.();
config.calendar?.createEvents?.(events);
config.calendarVisualsUi?.applySunRulerGradient?.(anchorDate);
diff --git a/app/calendar-events.js b/app/calendar-events.js
index d57aa85..64423de 100644
--- a/app/calendar-events.js
+++ b/app/calendar-events.js
@@ -1,4 +1,5 @@
(function () {
+ const dataService = window.TarotDataService || {};
const {
DAY_IN_MS,
toTitleCase,
@@ -11,83 +12,24 @@
const BACKFILL_DAYS = 4;
const FORECAST_DAYS = 7;
- function buildWeekEvents(geo, referenceData, anchorDate) {
- const baseDate = anchorDate || new Date();
- const events = [];
- let runningId = 1;
-
- for (let offset = -BACKFILL_DAYS; offset <= FORECAST_DAYS; offset += 1) {
- const date = new Date(baseDate.getTime() + offset * DAY_IN_MS);
- const hours = calcPlanetaryHoursForDayAndLocation(date, geo);
- const moonIllum = window.SunCalc.getMoonIllumination(date);
- const moonPhase = getMoonPhaseName(moonIllum.phase);
- const sunInfo = getDecanForDate(date, referenceData.signs, referenceData.decansBySign);
-
- const moonTarot = referenceData.planets.luna?.tarot?.majorArcana || "The High Priestess";
- events.push({
- id: `moon-${offset}`,
- calendarId: "astrology",
- category: "allday",
- title: `Moon: ${moonPhase} (${Math.round(moonIllum.fraction * 100)}%) · ${moonTarot}`,
- start: new Date(date.getFullYear(), date.getMonth(), date.getDate()),
- end: new Date(date.getFullYear(), date.getMonth(), date.getDate(), 23, 59, 59),
- isReadOnly: true
- });
-
- if (sunInfo?.sign) {
- const rulerPlanet = referenceData.planets[sunInfo.sign.rulingPlanetId];
- const bodyParts = [
- `${sunInfo.sign.symbol} ${toTitleCase(sunInfo.sign.element)} ${toTitleCase(sunInfo.sign.modality)}`,
- rulerPlanet ? `Sign ruler: ${rulerPlanet.symbol} ${rulerPlanet.name}` : `Sign ruler: ${sunInfo.sign.rulingPlanetId}`
- ];
-
- if (sunInfo.decan) {
- const decanRuler = referenceData.planets[sunInfo.decan.rulerPlanetId];
- const decanText = decanRuler
- ? `Decan ${sunInfo.decan.index}: ${sunInfo.decan.tarotMinorArcana} (${decanRuler.symbol} ${decanRuler.name})`
- : `Decan ${sunInfo.decan.index}: ${sunInfo.decan.tarotMinorArcana}`;
- bodyParts.unshift(decanText);
- }
-
- events.push({
- id: `sun-${offset}`,
- calendarId: "astrology",
- category: "allday",
- title: `Sun in ${sunInfo.sign.name} · ${sunInfo.sign.tarot.majorArcana}`,
- body: bodyParts.join("\n"),
- start: new Date(date.getFullYear(), date.getMonth(), date.getDate()),
- end: new Date(date.getFullYear(), date.getMonth(), date.getDate(), 23, 59, 59),
- isReadOnly: true
- });
- }
-
- for (const hour of hours) {
- const planet = referenceData.planets[hour.planetId];
- if (!planet) continue;
-
- const calendarId = PLANET_CALENDAR_IDS.has(hour.planetId)
- ? `planet-${hour.planetId}`
- : "planetary";
-
- events.push({
- id: `ph-${runningId++}`,
- calendarId,
- category: "time",
- title: `${planet.symbol} ${planet.name} · ${planet.tarot.majorArcana}`,
- body: `${planet.weekday} current · ${hour.isDaylight ? "Day" : "Night"} hour\n${planet.magickTypes}`,
- raw: {
- planetSymbol: planet.symbol,
- planetName: planet.name,
- tarotName: planet.tarot.majorArcana
- },
- start: hour.start,
- end: hour.end,
- isReadOnly: true
- });
- }
+ function normalizeApiEvent(event) {
+ if (!event || typeof event !== "object") {
+ return event;
}
- return events;
+ return {
+ ...event,
+ start: event.start ? new Date(event.start) : event.start,
+ end: event.end ? new Date(event.end) : event.end
+ };
+ }
+
+ async function buildWeekEvents(geo, referenceData, anchorDate) {
+ const payload = await dataService.fetchWeekEvents?.(geo, anchorDate);
+ const events = Array.isArray(payload?.events)
+ ? payload.events
+ : (Array.isArray(payload) ? payload : []);
+ return events.map((event) => normalizeApiEvent(event));
}
window.TarotEventBuilder = {
diff --git a/app/card-images.js b/app/card-images.js
index a68b659..2ecd0b1 100644
--- a/app/card-images.js
+++ b/app/card-images.js
@@ -107,8 +107,6 @@
quality: 82
};
- const DECK_REGISTRY_PATH = "asset/tarot deck/decks.json";
-
let deckManifestSources = buildDeckManifestSources();
const manifestCache = new Map();
@@ -116,6 +114,21 @@
const cardBackThumbnailCache = new Map();
let activeDeckId = DEFAULT_DECK_ID;
+ function getApiBaseUrl() {
+ return String(window.TarotDataService?.getApiBaseUrl?.() || window.TarotAppConfig?.apiBaseUrl || "")
+ .trim()
+ .replace(/\/+$/, "");
+ }
+
+ function rewriteBasePathForApi(basePath) {
+ const normalizedBasePath = String(basePath || "").trim();
+ if (!normalizedBasePath) {
+ return normalizedBasePath;
+ }
+
+ return window.TarotDataService?.toApiAssetUrl?.(normalizedBasePath) || normalizedBasePath;
+ }
+
function canonicalMajorName(cardName) {
return String(cardName || "")
.trim()
@@ -256,6 +269,46 @@
return /^(https?:)?\/\//i.test(String(pathValue || ""));
}
+ function joinAssetPath(basePath, relativePath) {
+ const normalizedBasePath = String(basePath || "").trim().replace(/\/+$/, "");
+ const normalizedRelativePath = String(relativePath || "")
+ .trim()
+ .replace(/^\.\//, "")
+ .replace(/^\/+/, "");
+
+ if (!normalizedBasePath) {
+ return normalizedRelativePath;
+ }
+
+ if (!normalizedRelativePath) {
+ return normalizedBasePath;
+ }
+
+ if (!isRemoteAssetPath(normalizedBasePath)) {
+ return `${normalizedBasePath}/${normalizedRelativePath}`;
+ }
+
+ try {
+ const url = new URL(normalizedBasePath);
+ const encodedRelativePath = normalizedRelativePath
+ .split("/")
+ .filter(Boolean)
+ .map((segment) => {
+ try {
+ return encodeURIComponent(decodeURIComponent(segment));
+ } catch {
+ return encodeURIComponent(segment);
+ }
+ })
+ .join("/");
+
+ url.pathname = `${url.pathname.replace(/\/+$/, "")}/${encodedRelativePath}`;
+ return url.toString();
+ } catch {
+ return `${normalizedBasePath}/${normalizedRelativePath}`;
+ }
+ }
+
function toDeckAssetPath(manifest, relativeOrAbsolutePath) {
const normalizedPath = String(relativeOrAbsolutePath || "").trim();
if (!normalizedPath) {
@@ -266,7 +319,7 @@
return normalizedPath;
}
- return `${manifest.basePath}/${normalizedPath.replace(/^\.\//, "")}`;
+ return joinAssetPath(manifest.basePath, normalizedPath);
}
function resolveDeckCardBackPath(manifest) {
@@ -364,7 +417,7 @@
const id = String(entry?.id || "").trim().toLowerCase();
const basePath = String(entry?.basePath || "").trim().replace(/\/$/, "");
const manifestPath = String(entry?.manifestPath || "").trim();
- if (!id || !basePath || !manifestPath) {
+ if (!id || !manifestPath) {
return;
}
@@ -382,14 +435,35 @@
}
function buildDeckManifestSources() {
- const registry = readManifestJsonSync(DECK_REGISTRY_PATH);
- const registryDecks = Array.isArray(registry)
- ? registry
- : (Array.isArray(registry?.decks) ? registry.decks : null);
+ if (!window.TarotDataService?.isApiEnabled?.() && !getApiBaseUrl()) {
+ return {};
+ }
+
+ const registryUrl = window.TarotDataService?.buildApiUrl?.("/api/v1/decks/options") || `${getApiBaseUrl()}/api/v1/decks/options`;
+ if (!registryUrl) {
+ return {};
+ }
+
+ const registry = readManifestJsonSync(registryUrl);
+ const registryDecks = Array.isArray(registry?.decks)
+ ? registry.decks.map((entry) => ({
+ id: entry?.id,
+ label: entry?.label,
+ manifestPath: window.TarotDataService?.buildApiUrl?.(`/api/v1/decks/${encodeURIComponent(String(entry?.id || "").trim().toLowerCase())}/manifest`) || `${getApiBaseUrl()}/api/v1/decks/${encodeURIComponent(String(entry?.id || "").trim().toLowerCase())}/manifest`
+ }))
+ : [];
return toDeckSourceMap(registryDecks);
}
+ function resetConnectionCaches() {
+ deckManifestSources = buildDeckManifestSources();
+ manifestCache.clear();
+ cardBackCache.clear();
+ cardBackThumbnailCache.clear();
+ setActiveDeck(activeDeckId);
+ }
+
function getDeckManifestSources(forceRefresh = false) {
if (forceRefresh || !deckManifestSources || Object.keys(deckManifestSources).length === 0) {
deckManifestSources = buildDeckManifestSources();
@@ -442,9 +516,9 @@
return {
id: source.id,
label: String(rawManifest.label || source.label || source.id),
- basePath: String(source.basePath || "").replace(/\/$/, ""),
+ basePath: rewriteBasePathForApi(String(rawManifest.basePath || source.basePath || "").replace(/\/$/, "")),
cardBack: String(rawManifest.cardBack || "").trim(),
- cardBackPath: String(source.cardBackPath || "").trim(),
+ cardBackPath: String(rawManifest.cardBackPath || source.cardBackPath || "").trim(),
thumbnails: normalizeThumbnailConfig(rawManifest.thumbnails, source.thumbnailRoot),
majors: rawManifest.majors || {},
minors: rawManifest.minors || {},
@@ -689,17 +763,17 @@
}
if (variant === "thumbnail") {
- return resolveDeckThumbnailPath(manifest, relativePath) || `${manifest.basePath}/${relativePath}`;
+ return resolveDeckThumbnailPath(manifest, relativePath) || toDeckAssetPath(manifest, relativePath);
}
- return `${manifest.basePath}/${relativePath}`;
+ return toDeckAssetPath(manifest, relativePath);
}
function resolveTarotCardImage(cardName, optionsOrDeckId) {
const { resolvedDeckId } = resolveDeckOptions(optionsOrDeckId);
const activePath = resolveWithDeck(resolvedDeckId, cardName);
if (activePath) {
- return encodeURI(activePath);
+ return activePath;
}
return null;
@@ -709,7 +783,7 @@
const { resolvedDeckId } = resolveDeckOptions(optionsOrDeckId);
const thumbnailPath = resolveWithDeck(resolvedDeckId, cardName, "thumbnail");
if (thumbnailPath) {
- return encodeURI(thumbnailPath);
+ return thumbnailPath;
}
return null;
@@ -720,7 +794,7 @@
if (cardBackCache.has(resolvedDeckId)) {
const cachedPath = cardBackCache.get(resolvedDeckId);
- return cachedPath ? encodeURI(cachedPath) : null;
+ return cachedPath || null;
}
const manifest = getDeckManifest(resolvedDeckId);
@@ -728,7 +802,7 @@
cardBackCache.set(resolvedDeckId, activeBackPath || null);
if (activeBackPath) {
- return encodeURI(activeBackPath);
+ return activeBackPath;
}
return null;
@@ -739,7 +813,7 @@
if (cardBackThumbnailCache.has(resolvedDeckId)) {
const cachedPath = cardBackThumbnailCache.get(resolvedDeckId);
- return cachedPath ? encodeURI(cachedPath) : null;
+ return cachedPath || null;
}
const manifest = getDeckManifest(resolvedDeckId);
@@ -747,7 +821,7 @@
const thumbnailPath = resolveDeckThumbnailPath(manifest, relativeBackPath) || resolveDeckCardBackPath(manifest);
cardBackThumbnailCache.set(resolvedDeckId, thumbnailPath || null);
- return thumbnailPath ? encodeURI(thumbnailPath) : null;
+ return thumbnailPath || null;
}
function resolveDisplayNameWithDeck(deckId, cardName, trumpNumber) {
@@ -852,6 +926,8 @@
setActiveDeck(nextDeck);
});
+ document.addEventListener("connection:updated", resetConnectionCaches);
+
window.TarotCardImages = {
resolveTarotCardImage,
resolveTarotCardThumbnail,
diff --git a/app/data-service.js b/app/data-service.js
index 1de2ebc..92aa64c 100644
--- a/app/data-service.js
+++ b/app/data-service.js
@@ -1,6 +1,10 @@
(function () {
let magickManifestCache = null;
let magickDataCache = null;
+ let deckOptionsCache = null;
+ const deckManifestCache = new Map();
+ let quizCategoriesCache = null;
+ const quizTemplatesCache = new Map();
const DATA_ROOT = "data";
const MAGICK_ROOT = DATA_ROOT;
@@ -92,8 +96,23 @@
pluto: "Pluto"
};
+ function buildRequestHeaders() {
+ const apiKey = getApiKey();
+ return apiKey
+ ? {
+ "x-api-key": apiKey
+ }
+ : undefined;
+ }
+
async function fetchJson(path) {
- const response = await fetch(path);
+ if (!path) {
+ throw new Error("API connection is not configured.");
+ }
+
+ const response = await fetch(path, {
+ headers: buildRequestHeaders()
+ });
if (!response.ok) {
throw new Error(`Failed to load ${path} (${response.status})`);
}
@@ -112,6 +131,98 @@
cursor[pathParts[pathParts.length - 1]] = value;
}
+ function normalizeApiBaseUrl(value) {
+ return String(value || "")
+ .trim()
+ .replace(/\/+$/, "");
+ }
+
+ function getApiBaseUrl() {
+ return normalizeApiBaseUrl(
+ window.TarotAppConfig?.getApiBaseUrl?.() || window.TarotAppConfig?.apiBaseUrl || ""
+ );
+ }
+
+ function getApiKey() {
+ return String(window.TarotAppConfig?.getApiKey?.() || window.TarotAppConfig?.apiKey || "")
+ .trim();
+ }
+
+ function isApiEnabled() {
+ return Boolean(getApiBaseUrl());
+ }
+
+ function encodePathSegments(pathValue) {
+ return String(pathValue || "")
+ .split("/")
+ .filter(Boolean)
+ .map((segment) => {
+ try {
+ return encodeURIComponent(decodeURIComponent(segment));
+ } catch {
+ return encodeURIComponent(segment);
+ }
+ })
+ .join("/");
+ }
+
+ function buildApiUrl(path, query = {}) {
+ const apiBaseUrl = getApiBaseUrl();
+ if (!apiBaseUrl) {
+ return "";
+ }
+
+ const url = new URL(path, `${apiBaseUrl}/`);
+ Object.entries(query || {}).forEach(([key, value]) => {
+ if (value == null) {
+ return;
+ }
+
+ const normalizedValue = String(value).trim();
+ if (!normalizedValue) {
+ return;
+ }
+
+ url.searchParams.set(key, normalizedValue);
+ });
+
+ const apiKey = getApiKey();
+ if (apiKey && !url.searchParams.has("api_key")) {
+ url.searchParams.set("api_key", apiKey);
+ }
+
+ return url.toString();
+ }
+
+ function toApiAssetUrl(assetPath) {
+ const apiBaseUrl = getApiBaseUrl();
+ const normalizedAssetPath = String(assetPath || "")
+ .trim()
+ .replace(/^\/+/, "")
+ .replace(/^asset\//i, "");
+
+ if (!apiBaseUrl || !normalizedAssetPath) {
+ return "";
+ }
+
+ const url = new URL(`/api/v1/assets/${encodePathSegments(normalizedAssetPath)}`, `${apiBaseUrl}/`);
+ const apiKey = getApiKey();
+ if (apiKey) {
+ url.searchParams.set("api_key", apiKey);
+ }
+
+ return url.toString();
+ }
+
+ function resetCaches() {
+ magickManifestCache = null;
+ magickDataCache = null;
+ deckOptionsCache = null;
+ quizCategoriesCache = null;
+ deckManifestCache.clear();
+ quizTemplatesCache.clear();
+ }
+
function normalizeTarotName(value) {
return String(value || "")
.trim()
@@ -207,7 +318,7 @@
return magickManifestCache;
}
- magickManifestCache = await fetchJson(`${MAGICK_ROOT}/MANIFEST.json`);
+ magickManifestCache = await fetchJson(buildApiUrl("/api/v1/bootstrap/magick-manifest"));
return magickManifestCache;
}
@@ -216,163 +327,185 @@
return magickDataCache;
}
- const manifest = await loadMagickManifest();
- const files = Array.isArray(manifest?.files) ? manifest.files : [];
- const jsonFiles = files.filter((file) => file.endsWith(".json"));
-
- const entries = await Promise.all(
- jsonFiles.map(async (relativePath) => {
- const data = await fetchJson(`${MAGICK_ROOT}/${relativePath}`);
- return [relativePath, data];
- })
- );
-
- const grouped = {};
- entries.forEach(([relativePath, data]) => {
- const noExtensionPath = relativePath.replace(/\.json$/i, "");
- const pathParts = noExtensionPath.split("/").filter(Boolean);
- if (!pathParts.length) {
- return;
- }
- buildObjectPath(grouped, pathParts, data);
- });
-
- magickDataCache = {
- manifest,
- grouped,
- files: Object.fromEntries(entries)
- };
-
+ magickDataCache = await fetchJson(buildApiUrl("/api/v1/bootstrap/magick-dataset"));
return magickDataCache;
}
async function loadReferenceData() {
- const { groupDecansBySign } = window.TarotCalc;
- const [
- planetsJson,
- signsJson,
- decansJson,
- sabianJson,
- planetScienceJson,
- gematriaCiphersJson,
- iChingJson,
- calendarMonthsJson,
- celestialHolidaysJson,
- calendarHolidaysJson,
- astronomyCyclesJson,
- tarotDatabaseJson,
- hebrewCalendarJson,
- islamicCalendarJson,
- wheelOfYearJson
- ] = await Promise.all([
- fetchJson(`${DATA_ROOT}/planetary-correspondences.json`),
- fetchJson(`${DATA_ROOT}/signs.json`),
- fetchJson(`${DATA_ROOT}/decans.json`),
- fetchJson(`${DATA_ROOT}/sabian-symbols.json`),
- fetchJson(`${DATA_ROOT}/planet-science.json`),
- fetchJson(`${DATA_ROOT}/gematria-ciphers.json`).catch(() => ({})),
- fetchJson(`${DATA_ROOT}/i-ching.json`),
- fetchJson(`${DATA_ROOT}/calendar-months.json`),
- fetchJson(`${DATA_ROOT}/celestial-holidays.json`),
- fetchJson(`${DATA_ROOT}/calendar-holidays.json`).catch(() => ({})),
- fetchJson(`${DATA_ROOT}/astronomy-cycles.json`).catch(() => ({})),
- fetchJson(`${DATA_ROOT}/tarot-database.json`).catch(() => ({})),
- fetchJson(`${DATA_ROOT}/hebrew-calendar.json`).catch(() => ({})),
- fetchJson(`${DATA_ROOT}/islamic-calendar.json`).catch(() => ({})),
- fetchJson(`${DATA_ROOT}/wheel-of-year.json`).catch(() => ({}))
- ]);
+ return fetchJson(buildApiUrl("/api/v1/bootstrap/reference-data"));
+ }
- const planets = planetsJson.planets || {};
- const signs = signsJson.signs || [];
- const decans = decansJson.decans || [];
- const sabianSymbols = Array.isArray(sabianJson?.symbols) ? sabianJson.symbols : [];
- const planetScience = Array.isArray(planetScienceJson?.planets)
- ? planetScienceJson.planets
- : [];
- const gematriaCiphers = gematriaCiphersJson && typeof gematriaCiphersJson === "object"
- ? gematriaCiphersJson
- : {};
- const iChing = {
- trigrams: Array.isArray(iChingJson?.trigrams) ? iChingJson.trigrams : [],
- hexagrams: Array.isArray(iChingJson?.hexagrams) ? iChingJson.hexagrams : [],
- correspondences: {
- meta: iChingJson?.correspondences?.meta && typeof iChingJson.correspondences.meta === "object"
- ? iChingJson.correspondences.meta
- : {},
- tarotToTrigram: Array.isArray(iChingJson?.correspondences?.tarotToTrigram)
- ? iChingJson.correspondences.tarotToTrigram
- : []
- }
- };
+ async function fetchWeekEvents(geo, anchorDate = new Date()) {
+ return fetchJson(buildApiUrl("/api/v1/calendar/week-events", {
+ latitude: geo?.latitude,
+ longitude: geo?.longitude,
+ date: anchorDate instanceof Date ? anchorDate.toISOString() : anchorDate
+ }));
+ }
- const calendarMonths = Array.isArray(calendarMonthsJson?.months)
- ? calendarMonthsJson.months.map((month) => enrichCalendarMonth(month))
- : [];
+ async function fetchNowSnapshot(geo, timestamp = new Date()) {
+ return fetchJson(buildApiUrl("/api/v1/now", {
+ latitude: geo?.latitude,
+ longitude: geo?.longitude,
+ date: timestamp instanceof Date ? timestamp.toISOString() : timestamp
+ }));
+ }
- const celestialHolidays = Array.isArray(celestialHolidaysJson?.holidays)
- ? celestialHolidaysJson.holidays.map((holiday) => enrichCelestialHoliday(holiday))
- : [];
+ async function loadTarotCards(filters = {}) {
+ return fetchJson(buildApiUrl("/api/v1/tarot/cards", {
+ q: filters?.query,
+ arcana: filters?.arcana,
+ suit: filters?.suit
+ }));
+ }
- const calendarHolidays = Array.isArray(calendarHolidaysJson?.holidays)
- ? calendarHolidaysJson.holidays.map((holiday) => enrichCalendarHoliday(holiday))
- : [];
+ async function pullTarotSpread(spreadId, options = {}) {
+ const normalizedSpreadId = String(spreadId || "").trim() || "three-card";
+ return fetchJson(buildApiUrl(`/api/v1/tarot/spreads/${encodeURIComponent(normalizedSpreadId)}/pull`, {
+ seed: options?.seed
+ }));
+ }
- const astronomyCycles = astronomyCyclesJson && typeof astronomyCyclesJson === "object"
- ? astronomyCyclesJson
- : {};
-
- const tarotDatabase = tarotDatabaseJson && typeof tarotDatabaseJson === "object"
- ? tarotDatabaseJson
- : {};
-
- const sourceMeanings = tarotDatabase.meanings && typeof tarotDatabase.meanings === "object"
- ? tarotDatabase.meanings
- : {};
-
- if (!sourceMeanings.majorByTrumpNumber || typeof sourceMeanings.majorByTrumpNumber !== "object") {
- sourceMeanings.majorByTrumpNumber = {};
+ async function loadDeckOptions(forceRefresh = false) {
+ if (!forceRefresh && deckOptionsCache) {
+ return deckOptionsCache;
}
- const existingByCardName = sourceMeanings.byCardName && typeof sourceMeanings.byCardName === "object"
- ? sourceMeanings.byCardName
- : {};
+ deckOptionsCache = await fetchJson(buildApiUrl("/api/v1/decks/options"));
+ return deckOptionsCache;
+ }
- sourceMeanings.byCardName = existingByCardName;
+ async function loadDeckManifest(deckId, forceRefresh = false) {
+ const normalizedDeckId = String(deckId || "").trim().toLowerCase();
+ if (!normalizedDeckId) {
+ return null;
+ }
- tarotDatabase.meanings = sourceMeanings;
+ if (!forceRefresh && deckManifestCache.has(normalizedDeckId)) {
+ return deckManifestCache.get(normalizedDeckId);
+ }
- const hebrewCalendar = hebrewCalendarJson && typeof hebrewCalendarJson === "object"
- ? hebrewCalendarJson
- : {};
- const islamicCalendar = islamicCalendarJson && typeof islamicCalendarJson === "object"
- ? islamicCalendarJson
- : {};
- const wheelOfYear = wheelOfYearJson && typeof wheelOfYearJson === "object"
- ? wheelOfYearJson
- : {};
+ const manifest = await fetchJson(buildApiUrl(`/api/v1/decks/${encodeURIComponent(normalizedDeckId)}/manifest`));
+ deckManifestCache.set(normalizedDeckId, manifest);
+ return manifest;
+ }
- return {
- planets,
- signs,
- decansBySign: groupDecansBySign(decans),
- sabianSymbols,
- planetScience,
- gematriaCiphers,
- iChing,
- calendarMonths,
- celestialHolidays,
- calendarHolidays,
- astronomyCycles,
- tarotDatabase,
- hebrewCalendar,
- islamicCalendar,
- wheelOfYear
+ async function loadQuizCategories(forceRefresh = false) {
+ if (!forceRefresh && quizCategoriesCache) {
+ return quizCategoriesCache;
+ }
+
+ quizCategoriesCache = await fetchJson(buildApiUrl("/api/v1/quiz/categories"));
+ return quizCategoriesCache;
+ }
+
+ async function loadQuizTemplates(query = {}, forceRefresh = false) {
+ const categoryId = String(query?.categoryId || "").trim();
+ const cacheKey = categoryId || "__all__";
+
+ if (!forceRefresh && quizTemplatesCache.has(cacheKey)) {
+ return quizTemplatesCache.get(cacheKey);
+ }
+
+ const templates = await fetchJson(buildApiUrl("/api/v1/quiz/templates", {
+ categoryId
+ }));
+ quizTemplatesCache.set(cacheKey, templates);
+ return templates;
+ }
+
+ async function pullQuizQuestion(query = {}) {
+ return fetchJson(buildApiUrl("/api/v1/quiz/questions/pull", {
+ categoryId: query?.categoryId,
+ templateKey: query?.templateKey,
+ difficulty: query?.difficulty,
+ seed: query?.seed,
+ includeAnswer: query?.includeAnswer
+ }));
+ }
+
+ async function probeConnection() {
+ const apiBaseUrl = getApiBaseUrl();
+ if (!apiBaseUrl) {
+ return {
+ ok: false,
+ reason: "missing-base-url",
+ message: "Enter an API Base URL to load TaroTime."
+ };
+ }
+
+ const requestOptions = {
+ headers: buildRequestHeaders()
};
+
+ try {
+ const healthResponse = await fetch(buildApiUrl("/api/v1/health"), requestOptions);
+ if (!healthResponse.ok) {
+ return {
+ ok: false,
+ reason: "health-check-failed",
+ message: `The API responded with ${healthResponse.status} during the health check.`
+ };
+ }
+
+ const health = await healthResponse.json().catch(() => null);
+ const protectedResponse = await fetch(buildApiUrl("/api/v1/decks/options"), requestOptions);
+
+ if (protectedResponse.status === 401 || protectedResponse.status === 403) {
+ return {
+ ok: false,
+ reason: "auth-required",
+ message: health?.apiKeyRequired
+ ? "The API requires a valid API key."
+ : "The API rejected this connection."
+ };
+ }
+
+ if (!protectedResponse.ok) {
+ return {
+ ok: false,
+ reason: "protected-route-failed",
+ message: `The API responded with ${protectedResponse.status} when loading protected data.`
+ };
+ }
+
+ const decksPayload = await protectedResponse.json().catch(() => null);
+ return {
+ ok: true,
+ reason: "connected",
+ message: "Connected.",
+ health,
+ deckCount: Array.isArray(decksPayload?.decks) ? decksPayload.decks.length : null
+ };
+ } catch (_error) {
+ return {
+ ok: false,
+ reason: "network-error",
+ message: "Unable to reach the API. Check the URL and make sure the server is running."
+ };
+ }
}
window.TarotDataService = {
+ buildApiUrl,
+ fetchNowSnapshot,
+ fetchWeekEvents,
+ getApiBaseUrl,
+ getApiKey,
+ isApiEnabled,
+ loadDeckManifest,
+ loadDeckOptions,
+ loadQuizCategories,
+ loadQuizTemplates,
+ loadTarotCards,
loadReferenceData,
loadMagickManifest,
- loadMagickDataset
+ loadMagickDataset,
+ probeConnection,
+ pullQuizQuestion,
+ pullTarotSpread,
+ toApiAssetUrl
};
+
+ document.addEventListener("connection:updated", resetCaches);
})();
diff --git a/app/styles.css b/app/styles.css
index 7473f45..bdc2445 100644
--- a/app/styles.css
+++ b/app/styles.css
@@ -73,6 +73,100 @@
.settings-trigger[aria-pressed="true"] {
background: #3f3f46;
}
+ body.connection-gated {
+ overflow: hidden;
+ }
+ .connection-gate {
+ position: fixed;
+ inset: 0;
+ z-index: 120;
+ display: grid;
+ place-items: center;
+ padding: 24px;
+ background:
+ radial-gradient(circle at top, rgba(245, 158, 11, 0.18), transparent 34%),
+ linear-gradient(180deg, rgba(9, 9, 11, 0.84), rgba(9, 9, 11, 0.96));
+ -webkit-backdrop-filter: blur(8px);
+ backdrop-filter: blur(8px);
+ }
+ .connection-gate[hidden] {
+ display: none;
+ }
+ .connection-gate-card {
+ width: min(460px, calc(100vw - 32px));
+ padding: 24px;
+ border: 1px solid rgba(245, 158, 11, 0.28);
+ border-radius: 18px;
+ background: linear-gradient(180deg, rgba(24, 24, 27, 0.96), rgba(9, 9, 11, 0.98));
+ box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
+ box-sizing: border-box;
+ }
+ .connection-gate-eyebrow {
+ margin-bottom: 10px;
+ font-size: 12px;
+ font-weight: 700;
+ letter-spacing: 0.16em;
+ text-transform: uppercase;
+ color: #fbbf24;
+ }
+ .connection-gate-title {
+ margin: 0;
+ font-size: 28px;
+ line-height: 1.1;
+ color: #fafaf9;
+ }
+ .connection-gate-copy {
+ margin: 12px 0 18px;
+ color: #d4d4d8;
+ font-size: 14px;
+ line-height: 1.6;
+ }
+ .connection-gate-fields {
+ display: grid;
+ gap: 12px;
+ }
+ .connection-gate-status {
+ min-height: 20px;
+ margin-top: 14px;
+ font-size: 13px;
+ color: #d4d4d8;
+ }
+ .connection-gate-status[data-tone="error"] {
+ color: #fca5a5;
+ }
+ .connection-gate-status[data-tone="success"] {
+ color: #86efac;
+ }
+ .connection-gate-status[data-tone="pending"] {
+ color: #fcd34d;
+ }
+ .connection-gate-actions {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: flex-end;
+ gap: 10px;
+ margin-top: 18px;
+ }
+ .connection-gate-actions button {
+ padding: 9px 14px;
+ border-radius: 8px;
+ border: 1px solid #3f3f46;
+ background: #27272a;
+ color: #f4f4f5;
+ cursor: pointer;
+ }
+ .connection-gate-actions button:hover {
+ background: #3f3f46;
+ }
+ #connection-gate-connect {
+ border-color: #d97706;
+ background: linear-gradient(180deg, #f59e0b, #d97706);
+ color: #111827;
+ font-weight: 700;
+ }
+ #connection-gate-connect:hover {
+ background: linear-gradient(180deg, #fbbf24, #ea580c);
+ }
#tarot-section {
height: calc(100vh - 61px);
background: #18181b;
@@ -3509,6 +3603,9 @@
color: #f4f4f5;
box-sizing: border-box;
}
+ .settings-field input[type="password"] {
+ letter-spacing: 0.04em;
+ }
.settings-actions {
margin-top: 12px;
display: flex;
@@ -3528,6 +3625,23 @@
.settings-popup-header button:hover {
background: #3f3f46;
}
+ @media (max-width: 640px) {
+ .connection-gate {
+ padding: 16px;
+ }
+ .connection-gate-card {
+ padding: 18px;
+ }
+ .connection-gate-title {
+ font-size: 24px;
+ }
+ .connection-gate-actions {
+ justify-content: stretch;
+ }
+ .connection-gate-actions button {
+ flex: 1 1 100%;
+ }
+ }
#month-strip {
height: 28px;
background: #18181b;
diff --git a/app/ui-alphabet-browser.js b/app/ui-alphabet-browser.js
index d8100dc..ca0701f 100644
--- a/app/ui-alphabet-browser.js
+++ b/app/ui-alphabet-browser.js
@@ -258,7 +258,7 @@
function enochianGlyphUrl(letter) {
const code = enochianGlyphCode(letter);
- return code ? `asset/img/enochian/char(${code}).png` : "";
+ return code ? (window.TarotDataService?.toApiAssetUrl?.(`img/enochian/char(${code}).png`) || "") : "";
}
function enochianGlyphImageHtml(letter, className) {
diff --git a/app/ui-alphabet-detail.js b/app/ui-alphabet-detail.js
index 2ffd088..d986d0a 100644
--- a/app/ui-alphabet-detail.js
+++ b/app/ui-alphabet-detail.js
@@ -564,7 +564,7 @@
Element / Planet${letter.elementOrPlanet || "—"}
Tarot${letter.tarot || "—"}
Numerology${letter.numerology || "—"}
- Glyph SourceLocal cache: asset/img/enochian (sourced from dCode set)
+ Glyph SourceAPI asset: img/enochian (sourced from dCode set)
Position#${letter.index} of 21
`));
diff --git a/app/ui-alphabet-gematria.js b/app/ui-alphabet-gematria.js
index adf2670..2ba1a69 100644
--- a/app/ui-alphabet-gematria.js
+++ b/app/ui-alphabet-gematria.js
@@ -3,6 +3,7 @@
let config = {
getAlphabets: () => null,
+ getGematriaDb: () => null,
getGematriaElements: () => ({
cipherEl: null,
inputEl: null,
@@ -24,6 +25,10 @@
return config.getAlphabets?.() || null;
}
+ function getConfiguredGematriaDb() {
+ return config.getGematriaDb?.() || null;
+ }
+
function getElements() {
return config.getGematriaElements?.() || {
cipherEl: null,
@@ -169,14 +174,20 @@
return state.loadingPromise;
}
- state.loadingPromise = fetch("data/gematria-ciphers.json")
- .then((response) => {
- if (!response.ok) {
- throw new Error(`Failed to load gematria ciphers (${response.status})`);
+ state.loadingPromise = Promise.resolve()
+ .then(async () => {
+ const configuredDb = getConfiguredGematriaDb();
+ if (configuredDb) {
+ return configuredDb;
}
- return response.json();
+
+ const referenceData = await window.TarotDataService?.loadReferenceData?.();
+ return referenceData?.gematriaCiphers || null;
})
.then((db) => {
+ if (!db) {
+ throw new Error("Gematria cipher data unavailable from API.");
+ }
state.db = sanitizeGematriaDb(db);
return state.db;
})
@@ -342,6 +353,11 @@
...config,
...nextConfig
};
+
+ const configuredDb = getConfiguredGematriaDb();
+ if (configuredDb) {
+ state.db = sanitizeGematriaDb(configuredDb);
+ }
}
window.AlphabetGematriaUi = {
diff --git a/app/ui-alphabet.js b/app/ui-alphabet.js
index 813a506..d3fe898 100644
--- a/app/ui-alphabet.js
+++ b/app/ui-alphabet.js
@@ -39,7 +39,8 @@
signPlacementById: new Map(),
planetPlacementById: new Map(),
pathPlacementByNo: new Map()
- }
+ },
+ gematriaDb: null
};
function arabicDisplayName(letter) {
@@ -86,6 +87,7 @@
function ensureGematriaCalculator() {
alphabetGematriaUi.init?.({
getAlphabets: () => state.alphabets,
+ getGematriaDb: () => state.gematriaDb,
getGematriaElements
});
alphabetGematriaUi.ensureCalculator?.();
@@ -403,6 +405,8 @@
state.monthRefsByHebrewId = buildMonthReferencesByHebrew(referenceData, state.alphabets);
}
+ state.gematriaDb = referenceData?.gematriaCiphers || null;
+
if (state.initialized) {
ensureGematriaCalculator();
syncFilterControls();
diff --git a/app/ui-now.js b/app/ui-now.js
index bbab26d..fc77817 100644
--- a/app/ui-now.js
+++ b/app/ui-now.js
@@ -1,6 +1,8 @@
(function () {
"use strict";
+ const dataService = window.TarotDataService || {};
+
const {
DAY_IN_MS,
getDateKey,
@@ -25,62 +27,65 @@
let moonCountdownCache = null;
let decanCountdownCache = null;
- function updateNowPanel(referenceData, geo, elements, timeFormat = "minutes") {
- if (!referenceData || !geo || !elements) {
- return { dayKey: getDateKey(new Date()), skyRefreshKey: "" };
+ function renderNowStatsFromSnapshot(elements, stats) {
+ if (elements.nowStatsPlanetsEl) {
+ elements.nowStatsPlanetsEl.replaceChildren();
+
+ const planetPositions = Array.isArray(stats?.planetPositions) ? stats.planetPositions : [];
+ if (!planetPositions.length) {
+ elements.nowStatsPlanetsEl.textContent = "--";
+ } else {
+ planetPositions.forEach((position) => {
+ const item = document.createElement("div");
+ item.className = "now-stats-planet";
+ item.textContent = String(position?.label || "").trim() || "--";
+ elements.nowStatsPlanetsEl.appendChild(item);
+ });
+ }
}
- const now = new Date();
- const dayKey = getDateKey(now);
+ if (elements.nowStatsSabianEl) {
+ const sunSabianSymbol = stats?.sunSabianSymbol || null;
+ const moonSabianSymbol = stats?.moonSabianSymbol || null;
+ const sunLine = sunSabianSymbol?.phrase
+ ? `Sun Sabian ${sunSabianSymbol.absoluteDegree}: ${sunSabianSymbol.phrase}`
+ : "Sun Sabian: --";
+ const moonLine = moonSabianSymbol?.phrase
+ ? `Moon Sabian ${moonSabianSymbol.absoluteDegree}: ${moonSabianSymbol.phrase}`
+ : "Moon Sabian: --";
+ elements.nowStatsSabianEl.textContent = `${sunLine}\n${moonLine}`;
+ }
+ }
- const todayHours = calcPlanetaryHoursForDayAndLocation(now, geo);
- const yesterday = new Date(now.getTime() - DAY_IN_MS);
- const yesterdayHours = calcPlanetaryHoursForDayAndLocation(yesterday, geo);
- const tomorrow = new Date(now.getTime() + DAY_IN_MS);
- const tomorrowHours = calcPlanetaryHoursForDayAndLocation(tomorrow, geo);
- const allHours = [...yesterdayHours, ...todayHours, ...tomorrowHours].sort(
- (a, b) => a.start.getTime() - b.start.getTime()
- );
- const currentHour = allHours.find((entry) => now >= entry.start && now < entry.end);
- const currentHourSkyKey = currentHour
- ? `${currentHour.planetId}-${currentHour.start.toISOString()}`
- : "no-hour";
+ function applyNowSnapshot(elements, snapshot, timeFormat) {
+ const timestamp = snapshot?.timestamp ? new Date(snapshot.timestamp) : new Date();
+ const dayKey = String(snapshot?.dayKey || getDateKey(timestamp));
+ const currentHour = snapshot?.currentHour || null;
- if (currentHour) {
- const planet = referenceData.planets[currentHour.planetId];
- elements.nowHourEl.textContent = planet
- ? `${planet.symbol} ${planet.name}`
- : currentHour.planetId;
+ if (currentHour?.planet) {
+ elements.nowHourEl.textContent = `${currentHour.planet.symbol} ${currentHour.planet.name}`;
if (elements.nowHourTarotEl) {
- const hourCardName = planet?.tarot?.majorArcana || "";
- const hourTrumpNumber = planet?.tarot?.number;
+ const hourCardName = currentHour.planet?.tarot?.majorArcana || "";
+ const hourTrumpNumber = currentHour.planet?.tarot?.number;
elements.nowHourTarotEl.textContent = hourCardName
? nowUiHelpers.getDisplayTarotName(hourCardName, hourTrumpNumber)
: "--";
}
- const msLeft = Math.max(0, currentHour.end.getTime() - now.getTime());
- elements.nowCountdownEl.textContent = nowUiHelpers.formatCountdown(msLeft, timeFormat);
+ elements.nowCountdownEl.textContent = nowUiHelpers.formatCountdown(currentHour.msRemaining, timeFormat);
if (elements.nowHourNextEl) {
- const nextHour = allHours.find(
- (entry) => entry.start.getTime() >= currentHour.end.getTime() - 1000
- );
- if (nextHour) {
- const nextPlanet = referenceData.planets[nextHour.planetId];
- elements.nowHourNextEl.textContent = nextPlanet
- ? `> ${nextPlanet.name}`
- : `> ${nextHour.planetId}`;
- } else {
- elements.nowHourNextEl.textContent = "> --";
- }
+ const nextPlanet = currentHour.nextHourPlanet;
+ elements.nowHourNextEl.textContent = nextPlanet
+ ? `> ${nextPlanet.name}`
+ : "> --";
}
nowUiHelpers.setNowCardImage(
elements.nowHourCardEl,
- planet?.tarot?.majorArcana,
+ currentHour.planet?.tarot?.majorArcana,
"Current planetary hour card",
- planet?.tarot?.number
+ currentHour.planet?.tarot?.number
);
} else {
elements.nowHourEl.textContent = "--";
@@ -94,28 +99,27 @@
nowUiHelpers.setNowCardImage(elements.nowHourCardEl, null, "Current planetary hour card");
}
- const moonIllum = window.SunCalc.getMoonIllumination(now);
- const moonPhase = getMoonPhaseName(moonIllum.phase);
- const moonTarot = referenceData.planets.luna?.tarot?.majorArcana || "The High Priestess";
- elements.nowMoonEl.textContent = `${moonPhase} (${Math.round(moonIllum.fraction * 100)}%)`;
- elements.nowMoonTarotEl.textContent = nowUiHelpers.getDisplayTarotName(moonTarot, referenceData.planets.luna?.tarot?.number);
+ const moon = snapshot?.moon || null;
+ const illuminationFraction = Number(moon?.illuminationFraction || 0);
+ const moonTarot = moon?.tarot?.majorArcana || "The High Priestess";
+ elements.nowMoonEl.textContent = moon
+ ? `${moon.phase} (${Math.round(illuminationFraction * 100)}%)`
+ : "--";
+ elements.nowMoonTarotEl.textContent = moon
+ ? nowUiHelpers.getDisplayTarotName(moonTarot, moon?.tarot?.number)
+ : "--";
nowUiHelpers.setNowCardImage(
elements.nowMoonCardEl,
- moonTarot,
+ moon?.tarot?.majorArcana,
"Current moon phase card",
- referenceData.planets.luna?.tarot?.number
+ moon?.tarot?.number
);
- if (!moonCountdownCache || moonCountdownCache.fromPhase !== moonPhase || now >= moonCountdownCache.changeAt) {
- moonCountdownCache = nowUiHelpers.findNextMoonPhaseTransition(now);
- }
-
if (elements.nowMoonCountdownEl) {
- if (moonCountdownCache?.changeAt) {
- const remaining = moonCountdownCache.changeAt.getTime() - now.getTime();
- elements.nowMoonCountdownEl.textContent = nowUiHelpers.formatCountdown(remaining, timeFormat);
+ if (moon?.countdown) {
+ elements.nowMoonCountdownEl.textContent = nowUiHelpers.formatCountdown(moon.countdown.msRemaining, timeFormat);
if (elements.nowMoonNextEl) {
- elements.nowMoonNextEl.textContent = `> ${moonCountdownCache.nextPhase}`;
+ elements.nowMoonNextEl.textContent = `> ${moon.countdown.nextPhase}`;
}
} else {
elements.nowMoonCountdownEl.textContent = "--";
@@ -125,45 +129,39 @@
}
}
- const sunInfo = getDecanForDate(now, referenceData.signs, referenceData.decansBySign);
- const decanSkyKey = sunInfo?.sign
- ? `${sunInfo.sign.id}-${sunInfo.decan?.index || 1}`
- : "no-decan";
- if (sunInfo?.sign) {
- const signStartDate = nowUiHelpers.getSignStartDate(now, sunInfo.sign);
- const daysSinceSignStart = (now.getTime() - signStartDate.getTime()) / DAY_IN_MS;
- const signDegree = Math.min(29.9, Math.max(0, daysSinceSignStart));
- const signMajorName = nowUiHelpers.getDisplayTarotName(sunInfo.sign.tarot.majorArcana, sunInfo.sign.tarot.trumpNumber);
- elements.nowDecanEl.textContent = `${sunInfo.sign.symbol} ${sunInfo.sign.name} · ${signMajorName} (${signDegree.toFixed(1)}°)`;
+ const decanInfo = snapshot?.decan || null;
+ if (decanInfo?.sign) {
+ const signMajorName = nowUiHelpers.getDisplayTarotName(
+ decanInfo.sign?.tarot?.majorArcana,
+ decanInfo.sign?.tarot?.number
+ );
+ const signDegree = Number.isFinite(Number(decanInfo.signDegree))
+ ? Number(decanInfo.signDegree).toFixed(1)
+ : "0.0";
- const currentDecanKey = `${sunInfo.sign.id}-${sunInfo.decan?.index || 1}`;
- if (!decanCountdownCache || decanCountdownCache.key !== currentDecanKey || now >= decanCountdownCache.changeAt) {
- decanCountdownCache = nowUiHelpers.findNextDecanTransition(now, referenceData.signs, referenceData.decansBySign);
- }
+ elements.nowDecanEl.textContent = `${decanInfo.sign.symbol} ${decanInfo.sign.name} · ${signMajorName} (${signDegree}°)`;
- if (sunInfo.decan) {
- const decanCardName = sunInfo.decan.tarotMinorArcana;
- elements.nowDecanTarotEl.textContent = nowUiHelpers.getDisplayTarotName(decanCardName);
- nowUiHelpers.setNowCardImage(elements.nowDecanCardEl, sunInfo.decan.tarotMinorArcana, "Current decan card");
+ if (decanInfo.decan?.tarotMinorArcana) {
+ elements.nowDecanTarotEl.textContent = nowUiHelpers.getDisplayTarotName(decanInfo.decan.tarotMinorArcana);
+ nowUiHelpers.setNowCardImage(elements.nowDecanCardEl, decanInfo.decan.tarotMinorArcana, "Current decan card");
} else {
- const signTarotName = sunInfo.sign.tarot?.majorArcana || "--";
+ const signTarotName = decanInfo.sign?.tarot?.majorArcana || "--";
elements.nowDecanTarotEl.textContent = signTarotName === "--"
? "--"
- : nowUiHelpers.getDisplayTarotName(signTarotName, sunInfo.sign.tarot?.trumpNumber);
+ : nowUiHelpers.getDisplayTarotName(signTarotName, decanInfo.sign?.tarot?.number);
nowUiHelpers.setNowCardImage(
elements.nowDecanCardEl,
- sunInfo.sign.tarot?.majorArcana,
+ decanInfo.sign?.tarot?.majorArcana,
"Current decan card",
- sunInfo.sign.tarot?.trumpNumber
+ decanInfo.sign?.tarot?.number
);
}
if (elements.nowDecanCountdownEl) {
- if (decanCountdownCache?.changeAt) {
- const remaining = decanCountdownCache.changeAt.getTime() - now.getTime();
- elements.nowDecanCountdownEl.textContent = nowUiHelpers.formatCountdown(remaining, timeFormat);
+ if (decanInfo.countdown) {
+ elements.nowDecanCountdownEl.textContent = nowUiHelpers.formatCountdown(decanInfo.countdown.msRemaining, timeFormat);
if (elements.nowDecanNextEl) {
- elements.nowDecanNextEl.textContent = `> ${nowUiHelpers.getDisplayTarotName(decanCountdownCache.nextLabel)}`;
+ elements.nowDecanNextEl.textContent = `> ${nowUiHelpers.getDisplayTarotName(decanInfo.countdown.nextLabel)}`;
}
} else {
elements.nowDecanCountdownEl.textContent = "--";
@@ -184,14 +182,23 @@
}
}
- nowUiHelpers.updateNowStats(referenceData, elements, now);
+ renderNowStatsFromSnapshot(elements, snapshot?.stats || {});
return {
dayKey,
- skyRefreshKey: `${currentHourSkyKey}|${decanSkyKey}|${moonPhase}`
+ skyRefreshKey: String(snapshot?.skyRefreshKey || "")
};
}
+ async function updateNowPanel(referenceData, geo, elements, timeFormat = "minutes") {
+ if (!referenceData || !geo || !elements) {
+ return { dayKey: getDateKey(new Date()), skyRefreshKey: "" };
+ }
+
+ const snapshot = await dataService.fetchNowSnapshot?.(geo, new Date());
+ return applyNowSnapshot(elements, snapshot || {}, timeFormat);
+ }
+
window.TarotNowUi = {
updateNowPanel
};
diff --git a/app/ui-quiz.js b/app/ui-quiz.js
index 4fa436d..88bd7d8 100644
--- a/app/ui-quiz.js
+++ b/app/ui-quiz.js
@@ -2,6 +2,8 @@
(function () {
"use strict";
+ const dataService = window.TarotDataService || {};
+
const state = {
initialized: false,
scoreCorrect: 0,
@@ -15,6 +17,7 @@
runRetrySet: new Set(),
currentQuestion: null,
answeredCurrent: false,
+ loadingQuestion: false,
autoAdvanceTimer: null,
autoAdvanceDelayMs: 1500
};
@@ -239,49 +242,15 @@
};
}
- function instantiateQuestion(template) {
- if (!template) {
- return null;
- }
-
- const prompt = String(resolveDifficultyValue(template.promptByDifficulty) || "").trim();
- const answer = normalizeOption(resolveDifficultyValue(template.answerByDifficulty));
- const pool = toUniqueOptionList(resolveDifficultyValue(template.poolByDifficulty) || []);
-
- if (!prompt || !answer) {
- return null;
- }
-
- const built = buildOptions(answer, pool);
- if (!built) {
- return null;
- }
-
- return {
- key: template.key,
- categoryId: template.categoryId,
- category: template.category,
- prompt,
- answer,
- options: built.options,
- correctIndex: built.correctIndex
- };
+ async function buildQuestionBank(referenceData, magickDataset) {
+ const payload = await dataService.loadQuizTemplates?.();
+ return Array.isArray(payload?.templates)
+ ? payload.templates
+ : (Array.isArray(payload) ? payload : []);
}
- function buildQuestionBank(referenceData, magickDataset) {
- if (typeof quizQuestionBank.buildQuestionBank !== "function") {
- return [];
- }
-
- return quizQuestionBank.buildQuestionBank(
- referenceData,
- magickDataset,
- DYNAMIC_CATEGORY_REGISTRY
- );
- }
-
- function refreshQuestionBank(referenceData, magickDataset) {
- state.questionBank = buildQuestionBank(referenceData, magickDataset);
+ async function refreshQuestionBank(referenceData, magickDataset) {
+ state.questionBank = await buildQuestionBank(referenceData, magickDataset);
state.templateByKey = new Map(state.questionBank.map((template) => [template.key, template]));
const hasTemplate = (key) => state.templateByKey.has(key);
@@ -380,7 +349,7 @@
|| "Category";
}
- function startRun(resetScore = false) {
+ async function startRun(resetScore = false) {
clearAutoAdvanceTimer();
if (resetScore) {
@@ -425,7 +394,7 @@
state.answeredCurrent = true;
updateScoreboard();
- showNextQuestion();
+ await showNextQuestion();
}
function popNextTemplateFromRun() {
@@ -450,6 +419,7 @@
}
function renderRunCompleteState() {
+ state.loadingQuestion = false;
state.currentQuestion = null;
state.answeredCurrent = true;
questionTypeEl.textContent = getRunLabel();
@@ -479,6 +449,7 @@
return;
}
+ state.loadingQuestion = false;
state.currentQuestion = question;
state.answeredCurrent = false;
@@ -505,6 +476,7 @@
return;
}
+ state.loadingQuestion = false;
state.currentQuestion = null;
state.answeredCurrent = true;
@@ -514,9 +486,25 @@
feedbackEl.textContent = "Try Random/All or switch to another category.";
}
- function showNextQuestion() {
+ async function createQuestionFromTemplate(template) {
+ if (!template) {
+ return null;
+ }
+
+ return dataService.pullQuizQuestion?.({
+ templateKey: template.key,
+ difficulty: getActiveDifficulty(),
+ includeAnswer: true
+ });
+ }
+
+ async function showNextQuestion() {
clearAutoAdvanceTimer();
+ if (state.loadingQuestion) {
+ return;
+ }
+
const totalPending = state.runUnseenKeys.length + state.runRetryKeys.length;
if (totalPending <= 0) {
if (state.questionBank.length) {
@@ -528,13 +516,21 @@
}
const maxAttempts = totalPending + 1;
+ state.loadingQuestion = true;
+ feedbackEl.textContent = "Loading question...";
+
for (let index = 0; index < maxAttempts; index += 1) {
const template = popNextTemplateFromRun();
if (!template) {
continue;
}
- const question = instantiateQuestion(template);
+ let question = null;
+ try {
+ question = await createQuestionFromTemplate(template);
+ } catch (_error) {
+ question = null;
+ }
if (question) {
renderQuestion(question);
return;
@@ -589,21 +585,21 @@
categoryEl.addEventListener("change", () => {
state.selectedCategory = String(categoryEl.value || "random");
- startRun(true);
+ void startRun(true);
});
difficultyEl.addEventListener("change", () => {
state.selectedDifficulty = String(difficultyEl.value || "normal").toLowerCase();
syncDifficultyControl();
- startRun(true);
+ void startRun(true);
});
resetEl.addEventListener("click", () => {
- startRun(true);
+ void startRun(true);
});
}
- function ensureQuizSection(referenceData, magickDataset) {
+ async function ensureQuizSection(referenceData, magickDataset) {
ensureQuizSection._referenceData = referenceData;
ensureQuizSection._magickDataset = magickDataset;
@@ -618,23 +614,23 @@
updateScoreboard();
}
- refreshQuestionBank(referenceData, magickDataset);
+ await refreshQuestionBank(referenceData, magickDataset);
const categoryAdjusted = renderCategoryOptions();
syncDifficultyControl();
if (categoryAdjusted) {
- startRun(false);
+ await startRun(false);
return;
}
const hasRunPending = state.runUnseenKeys.length > 0 || state.runRetryKeys.length > 0;
if (!state.currentQuestion && !hasRunPending) {
- startRun(false);
+ await startRun(false);
return;
}
if (!state.currentQuestion && hasRunPending) {
- showNextQuestion();
+ await showNextQuestion();
}
updateScoreboard();
diff --git a/app/ui-settings.js b/app/ui-settings.js
index c249e27..e8b9bbf 100644
--- a/app/ui-settings.js
+++ b/app/ui-settings.js
@@ -14,6 +14,7 @@
onSettingsApplied: null,
onSyncSkyBackground: null,
onStatus: null,
+ onConnectionSaved: null,
onReopenActiveSection: null,
getActiveSection: null,
onRenderWeek: null
@@ -30,10 +31,37 @@
timeFormatEl: document.getElementById("time-format"),
birthDateEl: document.getElementById("birth-date"),
tarotDeckEl: document.getElementById("tarot-deck"),
+ apiBaseUrlEl: document.getElementById("api-base-url"),
+ apiKeyEl: document.getElementById("api-key"),
saveSettingsEl: document.getElementById("save-settings"),
useLocationEl: document.getElementById("use-location")
};
}
+ function getConnectionSettings() {
+ return window.TarotAppConfig?.getConnectionSettings?.() || {
+ apiBaseUrl: String(window.TarotAppConfig?.apiBaseUrl || "").trim(),
+ apiKey: String(window.TarotAppConfig?.apiKey || "").trim()
+ };
+ }
+
+ function syncConnectionInputs() {
+ const { apiBaseUrlEl, apiKeyEl } = getElements();
+ const connectionSettings = getConnectionSettings();
+
+ if (apiBaseUrlEl) {
+ apiBaseUrlEl.value = String(connectionSettings.apiBaseUrl || "");
+ }
+
+ if (apiKeyEl) {
+ apiKeyEl.value = String(connectionSettings.apiKey || "");
+ }
+ }
+
+ function hasConnectionChanged(previous, next) {
+ return String(previous?.apiBaseUrl || "").trim() !== String(next?.apiBaseUrl || "").trim()
+ || String(previous?.apiKey || "").trim() !== String(next?.apiKey || "").trim();
+ }
+
function setStatus(text) {
if (typeof config.onStatus === "function") {
@@ -259,6 +287,7 @@
function applySettingsToInputs(settings) {
const { latEl, lngEl, timeFormatEl, birthDateEl, tarotDeckEl } = getElements();
syncTarotDeckInputOptions();
+ syncConnectionInputs();
const normalized = normalizeSettings(settings);
latEl.value = String(normalized.latitude);
lngEl.value = String(normalized.longitude);
@@ -292,12 +321,22 @@
});
}
+ function getConnectionSettingsFromInputs() {
+ const { apiBaseUrlEl, apiKeyEl } = getElements();
+
+ return {
+ apiBaseUrl: String(apiBaseUrlEl?.value || "").trim(),
+ apiKey: String(apiKeyEl?.value || "").trim()
+ };
+ }
+
function openSettingsPopup() {
const { settingsPopupEl, openSettingsEl } = getElements();
if (!settingsPopupEl) {
return;
}
+ applySettingsToInputs(loadSavedSettings());
settingsPopupEl.hidden = false;
if (openSettingsEl) {
openSettingsEl.setAttribute("aria-expanded", "true");
@@ -319,6 +358,10 @@
async function handleSaveSettings() {
try {
const settings = getSettingsFromInputs();
+ const previousConnectionSettings = getConnectionSettings();
+ const connectionSettings = getConnectionSettingsFromInputs();
+ const connectionChanged = hasConnectionChanged(previousConnectionSettings, connectionSettings);
+ const connectionResult = window.TarotAppConfig?.updateConnectionSettings?.(connectionSettings) || { didPersist: true };
const normalized = applySettingsToInputs(settings);
syncSky({ latitude: normalized.latitude, longitude: normalized.longitude }, true);
const didPersist = saveSettings(normalized);
@@ -327,11 +370,13 @@
config.onReopenActiveSection?.(config.getActiveSection());
}
closeSettingsPopup();
- if (typeof config.onRenderWeek === "function") {
+ if (connectionChanged && typeof config.onConnectionSaved === "function") {
+ await config.onConnectionSaved(connectionResult, connectionSettings);
+ } else if (typeof config.onRenderWeek === "function") {
await config.onRenderWeek();
}
- if (!didPersist) {
+ if (!didPersist || connectionResult.didPersist === false) {
setStatus("Settings applied for this session. Browser storage is unavailable.");
}
} catch (error) {
@@ -419,6 +464,11 @@
closeSettingsPopup();
}
});
+
+ document.addEventListener("connection:updated", () => {
+ syncConnectionInputs();
+ syncTarotDeckInputOptions();
+ });
}
function init(nextConfig = {}) {
diff --git a/app/ui-tarot-spread.js b/app/ui-tarot-spread.js
index e507744..60fdc22 100644
--- a/app/ui-tarot-spread.js
+++ b/app/ui-tarot-spread.js
@@ -1,9 +1,12 @@
(function () {
"use strict";
+ const dataService = window.TarotDataService || {};
+
let initialized = false;
let activeTarotSpread = null;
let activeTarotSpreadDraw = [];
+ let activeTarotSpreadLoading = false;
let config = {
ensureTarotSection: null,
getReferenceData: () => null,
@@ -59,22 +62,6 @@
return value === "celtic-cross" ? "celtic-cross" : "three-card";
}
- function drawNFromDeck(n) {
- const allCards = window.TarotSectionUi?.getCards?.() || [];
- if (!allCards.length) return [];
-
- const shuffled = [...allCards];
- for (let index = shuffled.length - 1; index > 0; index -= 1) {
- const swapIndex = Math.floor(Math.random() * (index + 1));
- [shuffled[index], shuffled[swapIndex]] = [shuffled[swapIndex], shuffled[index]];
- }
-
- return shuffled.slice(0, n).map((card) => ({
- ...card,
- reversed: Math.random() < 0.3
- }));
- }
-
function escapeHtml(value) {
return String(value || "")
.replace(/&/g, "&")
@@ -88,15 +75,27 @@
return spreadId === "celtic-cross" ? CELTIC_CROSS_POSITIONS : THREE_CARD_POSITIONS;
}
- function regenerateTarotSpreadDraw() {
+ async function regenerateTarotSpreadDraw() {
const normalizedSpread = normalizeTarotSpread(activeTarotSpread);
const positions = getSpreadPositions(normalizedSpread);
- const cards = drawNFromDeck(positions.length);
- activeTarotSpreadDraw = positions.map((position, index) => ({
- position,
- card: cards[index] || null,
- revealed: false
- }));
+
+ activeTarotSpreadLoading = true;
+ try {
+ const payload = await dataService.pullTarotSpread?.(normalizedSpread);
+ const apiPositions = Array.isArray(payload?.positions) ? payload.positions : [];
+ activeTarotSpreadDraw = apiPositions.map((entry, index) => ({
+ position: entry?.position || positions[index] || null,
+ card: entry?.card
+ ? {
+ ...entry.card,
+ reversed: Boolean(entry?.reversed ?? entry.card?.reversed)
+ }
+ : null,
+ revealed: false
+ }));
+ } finally {
+ activeTarotSpreadLoading = false;
+ }
}
function renderTarotSpreadMeanings() {
@@ -158,8 +157,20 @@
|| ""
).trim();
+ if (activeTarotSpreadLoading) {
+ tarotSpreadBoardEl.innerHTML = 'Loading spread from API...
';
+ if (tarotSpreadMeaningsEl) {
+ tarotSpreadMeaningsEl.innerHTML = "";
+ }
+ return;
+ }
+
if (!activeTarotSpreadDraw.length) {
- regenerateTarotSpreadDraw();
+ tarotSpreadBoardEl.innerHTML = 'Loading spread...
';
+ if (tarotSpreadMeaningsEl) {
+ tarotSpreadMeaningsEl.innerHTML = "";
+ }
+ return;
}
tarotSpreadBoardEl.className = `tarot-spread-board tarot-spread-board--${isCeltic ? "celtic" : "three"}`;
@@ -267,10 +278,14 @@
function showTarotSpreadView(spreadId = "three-card") {
activeTarotSpread = normalizeTarotSpread(spreadId);
- regenerateTarotSpreadDraw();
+ activeTarotSpreadLoading = true;
+ activeTarotSpreadDraw = [];
applyViewState();
ensureTarotBrowseData();
renderTarotSpread();
+ void regenerateTarotSpreadDraw().then(() => {
+ renderTarotSpread();
+ });
}
function setSpread(spreadId, openTarotSection = false) {
@@ -281,8 +296,12 @@
}
function revealAll() {
+ if (activeTarotSpreadLoading) {
+ return;
+ }
+
if (!activeTarotSpreadDraw.length) {
- regenerateTarotSpreadDraw();
+ return;
}
activeTarotSpreadDraw.forEach((entry) => {
@@ -376,8 +395,12 @@
if (tarotSpreadRedrawEl) {
tarotSpreadRedrawEl.addEventListener("click", () => {
- regenerateTarotSpreadDraw();
+ activeTarotSpreadLoading = true;
+ activeTarotSpreadDraw = [];
renderTarotSpread();
+ void regenerateTarotSpreadDraw().then(() => {
+ renderTarotSpread();
+ });
});
}
diff --git a/app/ui-tarot.js b/app/ui-tarot.js
index a98ac27..758cbec 100644
--- a/app/ui-tarot.js
+++ b/app/ui-tarot.js
@@ -1,4 +1,5 @@
(function () {
+ const dataService = window.TarotDataService || {};
const {
resolveTarotCardImage,
resolveTarotCardThumbnail,
@@ -41,7 +42,8 @@
magickDataset: null,
referenceData: null,
monthRefsByCardId: new Map(),
- courtCardByDecanId: new Map()
+ courtCardByDecanId: new Map(),
+ loadingPromise: null
};
const TAROT_TRUMP_NUMBER_BY_NAME = {
@@ -781,7 +783,19 @@
}
}
- function ensureTarotSection(referenceData, magickDataset = null) {
+ async function loadCards(referenceData, magickDataset) {
+ const payload = await dataService.loadTarotCards?.();
+ const cards = Array.isArray(payload?.cards)
+ ? payload.cards
+ : (Array.isArray(payload) ? payload : []);
+
+ return cards.map((card) => ({
+ ...card,
+ id: String(card?.id || "").trim() || cardId(card)
+ }));
+ }
+
+ async function ensureTarotSection(referenceData, magickDataset = null) {
state.referenceData = referenceData || state.referenceData;
if (magickDataset) {
@@ -853,151 +867,156 @@
return;
}
- const databaseBuilder = window.TarotCardDatabase?.buildTarotDatabase;
- if (typeof databaseBuilder !== "function") {
+ if (state.loadingPromise) {
+ await state.loadingPromise;
return;
}
- const cards = databaseBuilder(referenceData, magickDataset).map((card) => ({
- ...card,
- id: cardId(card)
- }));
+ state.loadingPromise = (async () => {
+ const cards = await loadCards(referenceData, magickDataset);
- state.cards = cards;
- state.monthRefsByCardId = buildMonthReferencesByCard(referenceData, cards);
- state.courtCardByDecanId = buildCourtCardByDecanId(cards);
- state.filteredCards = [...cards];
- renderList(elements);
- renderHouseOfCards(elements);
- syncHouseControls(elements);
+ state.cards = cards;
+ state.monthRefsByCardId = buildMonthReferencesByCard(referenceData, cards);
+ state.courtCardByDecanId = buildCourtCardByDecanId(cards);
+ state.filteredCards = [...cards];
+ renderList(elements);
+ renderHouseOfCards(elements);
+ syncHouseControls(elements);
- if (cards.length > 0) {
- selectCardById(cards[0].id, elements);
- }
-
- elements.tarotCardListEl.addEventListener("click", (event) => {
- const target = event.target;
- if (!(target instanceof Node)) {
- return;
+ if (cards.length > 0) {
+ selectCardById(cards[0].id, elements);
}
- const button = target instanceof Element
- ? target.closest(".tarot-list-item")
- : null;
-
- if (!(button instanceof HTMLButtonElement)) {
- return;
- }
-
- const selectedId = button.dataset.cardId;
- if (!selectedId) {
- return;
- }
-
- selectCardById(selectedId, elements);
- });
-
- if (elements.tarotSearchInputEl) {
- elements.tarotSearchInputEl.addEventListener("input", () => {
- state.searchQuery = elements.tarotSearchInputEl.value || "";
- applySearchFilter(elements);
- });
- }
-
- if (elements.tarotSearchClearEl && elements.tarotSearchInputEl) {
- elements.tarotSearchClearEl.addEventListener("click", () => {
- elements.tarotSearchInputEl.value = "";
- state.searchQuery = "";
- applySearchFilter(elements);
- elements.tarotSearchInputEl.focus();
- });
- }
-
- if (elements.tarotHouseFocusToggleEl) {
- elements.tarotHouseFocusToggleEl.addEventListener("click", () => {
- state.houseFocusMode = !state.houseFocusMode;
- syncHouseControls(elements);
- });
- }
-
- if (elements.tarotHouseTopCardsVisibleEl) {
- elements.tarotHouseTopCardsVisibleEl.addEventListener("change", () => {
- state.houseTopCardsVisible = Boolean(elements.tarotHouseTopCardsVisibleEl.checked);
- renderHouseOfCards(elements);
- syncHouseControls(elements);
- });
- }
-
- [
- [elements.tarotHouseTopInfoHebrewEl, "hebrew"],
- [elements.tarotHouseTopInfoPlanetEl, "planet"],
- [elements.tarotHouseTopInfoZodiacEl, "zodiac"],
- [elements.tarotHouseTopInfoTrumpEl, "trump"],
- [elements.tarotHouseTopInfoPathEl, "path"]
- ].forEach(([checkbox, key]) => {
- if (!checkbox) {
- return;
- }
- checkbox.addEventListener("change", () => {
- state.houseTopInfoModes[key] = Boolean(checkbox.checked);
- renderHouseOfCards(elements);
- syncHouseControls(elements);
- });
- });
-
- if (elements.tarotHouseBottomCardsVisibleEl) {
- elements.tarotHouseBottomCardsVisibleEl.addEventListener("change", () => {
- state.houseBottomCardsVisible = Boolean(elements.tarotHouseBottomCardsVisibleEl.checked);
- renderHouseOfCards(elements);
- syncHouseControls(elements);
- });
- }
-
- [
- [elements.tarotHouseBottomInfoZodiacEl, "zodiac"],
- [elements.tarotHouseBottomInfoDecanEl, "decan"],
- [elements.tarotHouseBottomInfoMonthEl, "month"],
- [elements.tarotHouseBottomInfoRulerEl, "ruler"],
- [elements.tarotHouseBottomInfoDateEl, "date"]
- ].forEach(([checkbox, key]) => {
- if (!checkbox) {
- return;
- }
- checkbox.addEventListener("change", () => {
- state.houseBottomInfoModes[key] = Boolean(checkbox.checked);
- renderHouseOfCards(elements);
- syncHouseControls(elements);
- });
- });
-
- if (elements.tarotHouseExportEl) {
- elements.tarotHouseExportEl.addEventListener("click", () => {
- exportHouseOfCards(elements, "png");
- });
- }
-
- if (elements.tarotHouseExportWebpEl) {
- elements.tarotHouseExportWebpEl.addEventListener("click", () => {
- exportHouseOfCards(elements, "webp");
- });
- }
-
- if (elements.tarotDetailImageEl) {
- elements.tarotDetailImageEl.addEventListener("click", () => {
- if (elements.tarotDetailImageEl.style.display === "none" || !state.selectedCardId) {
+ elements.tarotCardListEl.addEventListener("click", (event) => {
+ const target = event.target;
+ if (!(target instanceof Node)) {
return;
}
- const request = buildLightboxCardRequestById(state.selectedCardId);
- if (!request?.src) {
+ const button = target instanceof Element
+ ? target.closest(".tarot-list-item")
+ : null;
+
+ if (!(button instanceof HTMLButtonElement)) {
return;
}
- window.TarotUiLightbox?.open?.(request);
- });
- }
+ const selectedId = button.dataset.cardId;
+ if (!selectedId) {
+ return;
+ }
- state.initialized = true;
+ selectCardById(selectedId, elements);
+ });
+
+ if (elements.tarotSearchInputEl) {
+ elements.tarotSearchInputEl.addEventListener("input", () => {
+ state.searchQuery = elements.tarotSearchInputEl.value || "";
+ applySearchFilter(elements);
+ });
+ }
+
+ if (elements.tarotSearchClearEl && elements.tarotSearchInputEl) {
+ elements.tarotSearchClearEl.addEventListener("click", () => {
+ elements.tarotSearchInputEl.value = "";
+ state.searchQuery = "";
+ applySearchFilter(elements);
+ elements.tarotSearchInputEl.focus();
+ });
+ }
+
+ if (elements.tarotHouseFocusToggleEl) {
+ elements.tarotHouseFocusToggleEl.addEventListener("click", () => {
+ state.houseFocusMode = !state.houseFocusMode;
+ syncHouseControls(elements);
+ });
+ }
+
+ if (elements.tarotHouseTopCardsVisibleEl) {
+ elements.tarotHouseTopCardsVisibleEl.addEventListener("change", () => {
+ state.houseTopCardsVisible = Boolean(elements.tarotHouseTopCardsVisibleEl.checked);
+ renderHouseOfCards(elements);
+ syncHouseControls(elements);
+ });
+ }
+
+ [
+ [elements.tarotHouseTopInfoHebrewEl, "hebrew"],
+ [elements.tarotHouseTopInfoPlanetEl, "planet"],
+ [elements.tarotHouseTopInfoZodiacEl, "zodiac"],
+ [elements.tarotHouseTopInfoTrumpEl, "trump"],
+ [elements.tarotHouseTopInfoPathEl, "path"]
+ ].forEach(([checkbox, key]) => {
+ if (!checkbox) {
+ return;
+ }
+ checkbox.addEventListener("change", () => {
+ state.houseTopInfoModes[key] = Boolean(checkbox.checked);
+ renderHouseOfCards(elements);
+ syncHouseControls(elements);
+ });
+ });
+
+ if (elements.tarotHouseBottomCardsVisibleEl) {
+ elements.tarotHouseBottomCardsVisibleEl.addEventListener("change", () => {
+ state.houseBottomCardsVisible = Boolean(elements.tarotHouseBottomCardsVisibleEl.checked);
+ renderHouseOfCards(elements);
+ syncHouseControls(elements);
+ });
+ }
+
+ [
+ [elements.tarotHouseBottomInfoZodiacEl, "zodiac"],
+ [elements.tarotHouseBottomInfoDecanEl, "decan"],
+ [elements.tarotHouseBottomInfoMonthEl, "month"],
+ [elements.tarotHouseBottomInfoRulerEl, "ruler"],
+ [elements.tarotHouseBottomInfoDateEl, "date"]
+ ].forEach(([checkbox, key]) => {
+ if (!checkbox) {
+ return;
+ }
+ checkbox.addEventListener("change", () => {
+ state.houseBottomInfoModes[key] = Boolean(checkbox.checked);
+ renderHouseOfCards(elements);
+ syncHouseControls(elements);
+ });
+ });
+
+ if (elements.tarotHouseExportEl) {
+ elements.tarotHouseExportEl.addEventListener("click", () => {
+ exportHouseOfCards(elements, "png");
+ });
+ }
+
+ if (elements.tarotHouseExportWebpEl) {
+ elements.tarotHouseExportWebpEl.addEventListener("click", () => {
+ exportHouseOfCards(elements, "webp");
+ });
+ }
+
+ if (elements.tarotDetailImageEl) {
+ elements.tarotDetailImageEl.addEventListener("click", () => {
+ if (elements.tarotDetailImageEl.style.display === "none" || !state.selectedCardId) {
+ return;
+ }
+
+ const request = buildLightboxCardRequestById(state.selectedCardId);
+ if (!request?.src) {
+ return;
+ }
+
+ window.TarotUiLightbox?.open?.(request);
+ });
+ }
+
+ state.initialized = true;
+ })();
+
+ try {
+ await state.loadingPromise;
+ } finally {
+ state.loadingPromise = null;
+ }
}
function selectCardByTrump(trumpNumber) {
diff --git a/asset/img/enochian/char(65).png b/asset/img/enochian/char(65).png
deleted file mode 100644
index de534e4..0000000
Binary files a/asset/img/enochian/char(65).png and /dev/null differ
diff --git a/asset/img/enochian/char(66).png b/asset/img/enochian/char(66).png
deleted file mode 100644
index aff0adc..0000000
Binary files a/asset/img/enochian/char(66).png and /dev/null differ
diff --git a/asset/img/enochian/char(67).png b/asset/img/enochian/char(67).png
deleted file mode 100644
index 58dd1e6..0000000
Binary files a/asset/img/enochian/char(67).png and /dev/null differ
diff --git a/asset/img/enochian/char(68).png b/asset/img/enochian/char(68).png
deleted file mode 100644
index f3f7ec3..0000000
Binary files a/asset/img/enochian/char(68).png and /dev/null differ
diff --git a/asset/img/enochian/char(69).png b/asset/img/enochian/char(69).png
deleted file mode 100644
index 1ef376f..0000000
Binary files a/asset/img/enochian/char(69).png and /dev/null differ
diff --git a/asset/img/enochian/char(70).png b/asset/img/enochian/char(70).png
deleted file mode 100644
index cc4cd3d..0000000
Binary files a/asset/img/enochian/char(70).png and /dev/null differ
diff --git a/asset/img/enochian/char(71).png b/asset/img/enochian/char(71).png
deleted file mode 100644
index 2f43a22..0000000
Binary files a/asset/img/enochian/char(71).png and /dev/null differ
diff --git a/asset/img/enochian/char(72).png b/asset/img/enochian/char(72).png
deleted file mode 100644
index 1fb1deb..0000000
Binary files a/asset/img/enochian/char(72).png and /dev/null differ
diff --git a/asset/img/enochian/char(73).png b/asset/img/enochian/char(73).png
deleted file mode 100644
index 50ce227..0000000
Binary files a/asset/img/enochian/char(73).png and /dev/null differ
diff --git a/asset/img/enochian/char(76).png b/asset/img/enochian/char(76).png
deleted file mode 100644
index cf7f85e..0000000
Binary files a/asset/img/enochian/char(76).png and /dev/null differ
diff --git a/asset/img/enochian/char(77).png b/asset/img/enochian/char(77).png
deleted file mode 100644
index 150db4a..0000000
Binary files a/asset/img/enochian/char(77).png and /dev/null differ
diff --git a/asset/img/enochian/char(78).png b/asset/img/enochian/char(78).png
deleted file mode 100644
index dd52dfc..0000000
Binary files a/asset/img/enochian/char(78).png and /dev/null differ
diff --git a/asset/img/enochian/char(79).png b/asset/img/enochian/char(79).png
deleted file mode 100644
index 44ceb8e..0000000
Binary files a/asset/img/enochian/char(79).png and /dev/null differ
diff --git a/asset/img/enochian/char(80).png b/asset/img/enochian/char(80).png
deleted file mode 100644
index 237b2c0..0000000
Binary files a/asset/img/enochian/char(80).png and /dev/null differ
diff --git a/asset/img/enochian/char(81).png b/asset/img/enochian/char(81).png
deleted file mode 100644
index bdcfdd3..0000000
Binary files a/asset/img/enochian/char(81).png and /dev/null differ
diff --git a/asset/img/enochian/char(82).png b/asset/img/enochian/char(82).png
deleted file mode 100644
index fa59293..0000000
Binary files a/asset/img/enochian/char(82).png and /dev/null differ
diff --git a/asset/img/enochian/char(83).png b/asset/img/enochian/char(83).png
deleted file mode 100644
index 3569b1b..0000000
Binary files a/asset/img/enochian/char(83).png and /dev/null differ
diff --git a/asset/img/enochian/char(84).png b/asset/img/enochian/char(84).png
deleted file mode 100644
index 0d3ae2e..0000000
Binary files a/asset/img/enochian/char(84).png and /dev/null differ
diff --git a/asset/img/enochian/char(85).png b/asset/img/enochian/char(85).png
deleted file mode 100644
index fabfc2d..0000000
Binary files a/asset/img/enochian/char(85).png and /dev/null differ
diff --git a/asset/img/enochian/char(86).png b/asset/img/enochian/char(86).png
deleted file mode 100644
index fabfc2d..0000000
Binary files a/asset/img/enochian/char(86).png and /dev/null differ
diff --git a/asset/img/enochian/char(88).png b/asset/img/enochian/char(88).png
deleted file mode 100644
index caeb854..0000000
Binary files a/asset/img/enochian/char(88).png and /dev/null differ
diff --git a/asset/img/enochian/char(90).png b/asset/img/enochian/char(90).png
deleted file mode 100644
index b3348df..0000000
Binary files a/asset/img/enochian/char(90).png and /dev/null differ
diff --git a/data/MANIFEST.json b/data/MANIFEST.json
deleted file mode 100644
index e2b0e4c..0000000
--- a/data/MANIFEST.json
+++ /dev/null
@@ -1,50 +0,0 @@
-{
- "generatedAt": "2026-02-22T03:40:25.496Z",
- "source": "data",
- "output": "data",
- "totals": {
- "json": 37,
- "assets": 1,
- "files": 38
- },
- "files": [
- "alphabets.json",
- "gods.json",
- "numbers.json",
- "playing-cards-52.json",
- "alchemy/elementals.json",
- "alchemy/elements.json",
- "alchemy/symbols.json",
- "alchemy/terms.json",
- "astrology/houses.json",
- "astrology/planets.json",
- "astrology/retrograde.json",
- "astrology/zodiac.json",
- "chakras.json",
- "enochian/dictionary.json",
- "enochian/letters.json",
- "enochian/tablets.json",
- "gd/degrees.json",
- "gd/grades.json",
- "geomancy/houses.json",
- "geomancy/tetragrams.json",
- "hebrewLetters.json",
- "kabbalah/angelicOrders.json",
- "kabbalah/archangels.json",
- "kabbalah/cube.json",
- "kabbalah/fourWorlds.json",
- "kabbalah/godNames.json",
- "kabbalah/kerubim.json",
- "kabbalah/kabbalah-tree.json",
- "kabbalah/paths.json",
- "kabbalah/sephirot.json",
- "kabbalah/seventyTwoAngels.json",
- "kabbalah/souls.json",
- "kabbalah/tribesOfIsrael.json",
- "hebrew-calendar.json",
- "islamic-calendar.json",
- "calendar-holidays.json",
- "wheel-of-year.json",
- "pentagram.svg"
- ]
-}
diff --git a/data/alchemy/elementals.json b/data/alchemy/elementals.json
deleted file mode 100644
index 09bc813..0000000
--- a/data/alchemy/elementals.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "gnome": {
- "id": "gnome",
- "name": {
- "en": "Gnome"
- },
- "namePlural": {
- "en": "Gnomes"
- },
- "title": {
- "en": "Spirits of Earth"
- },
- "elementId": "earth"
- },
- "sylph": {
- "id": "sylph",
- "name": {
- "en": "Sylph"
- },
- "namePlural": {
- "en": "Sylphs"
- },
- "title": {
- "en": "Spirits of Air"
- },
- "elementId": "air"
- },
- "undine": {
- "id": "undine",
- "name": {
- "en": "Undine"
- },
- "namePlural": {
- "en": "Undines"
- },
- "title": {
- "en": "Spirits of Water"
- },
- "elementId": "water"
- },
- "salamander": {
- "id": "salamander",
- "name": {
- "en": "Salamander"
- },
- "namePlural": {
- "en": "Salamanders"
- },
- "title": {
- "en": "Spirits of Fire"
- },
- "elementId": "fire"
- }
-}
diff --git a/data/alchemy/elements.json b/data/alchemy/elements.json
deleted file mode 100644
index 5e08ac9..0000000
--- a/data/alchemy/elements.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "earth": {
- "id": "earth",
- "symbol": "🜃",
- "name": {
- "en": "Earth"
- },
- "elementalId": "gnome"
- },
- "air": {
- "id": "air",
- "symbol": "🜁",
- "name": {
- "en": "Air"
- },
- "elementalId": "sylph"
- },
- "water": {
- "id": "water",
- "symbol": "🜄",
- "name": {
- "en": "Water"
- },
- "elementalId": "undine"
- },
- "fire": {
- "id": "fire",
- "symbol": "🜂",
- "name": {
- "en": "Fire"
- },
- "elementalId": "salamander"
- },
- "spirit": {
- "id": "spirit",
- "symbol": "☸",
- "name": {
- "en": "Spirit"
- },
- "elementalId": ""
- }
-}
diff --git a/data/alchemy/symbols.json b/data/alchemy/symbols.json
deleted file mode 100644
index 28ffefd..0000000
--- a/data/alchemy/symbols.json
+++ /dev/null
@@ -1,109 +0,0 @@
-{
- "sulphur": {
- "id": "sulphur",
- "symbol": "🜍",
- "altSymbol": "🜍",
- "name": {
- "en": "Sulphur"
- },
- "category": "principles",
- "gdGrade": 1
- },
- "mercury": {
- "id": "mercury",
- "symbol": "☿︎",
- "altSymbol": "☿︎",
- "name": {
- "en": "Mercury"
- },
- "category": "principles",
- "gdGrade": 1
- },
- "salt": {
- "id": "salt",
- "symbol": "🜔",
- "altSymbol": "🜔",
- "name": {
- "en": "Salt"
- },
- "category": "principles",
- "gdGrade": 1
- },
- "lead": {
- "id": "lead",
- "symbol": "🜪",
- "altSymbol": "♄︎",
- "name": {
- "en": "Lead"
- },
- "category": "planets",
- "planetId": "saturn",
- "gdGrade": 1
- },
- "tin": {
- "id": "tin",
- "symbol": "🜩",
- "altSymbol": "♃︎",
- "name": {
- "en": "Tin"
- },
- "category": "planets",
- "planetId": "jupiter",
- "gdGrade": 1
- },
- "iron": {
- "id": "iron",
- "symbol": "🜜",
- "altSymbol": "♂︎",
- "name": {
- "en": "Iron"
- },
- "category": "planets",
- "planetId": "mars",
- "gdGrade": 1
- },
- "gold": {
- "id": "gold",
- "symbol": "🜚",
- "altSymbol": "☉︎",
- "name": {
- "en": "Gold"
- },
- "category": "planets",
- "planetId": "sol",
- "gdGrade": 1
- },
- "copper": {
- "id": "copper",
- "symbol": "🜠",
- "altSymbol": "♀︎",
- "name": {
- "en": "Copper / Brass"
- },
- "category": "planets",
- "planetId": "venus",
- "gdGrade": 1
- },
- "quicksilver": {
- "id": "quicksilver",
- "symbol": "☿︎",
- "altSymbol": "☿︎",
- "name": {
- "en": "Quicksilver"
- },
- "category": "planets",
- "planetId": "mercury",
- "gdGrade": 1
- },
- "silver": {
- "id": "silver",
- "symbol": "🜛",
- "altSymbol": "☽︎",
- "name": {
- "en": "Silver"
- },
- "category": "planets",
- "planetId": "luna",
- "gdGrade": 1
- }
-}
diff --git a/data/alchemy/terms.json b/data/alchemy/terms.json
deleted file mode 100644
index 3aa3cc6..0000000
--- a/data/alchemy/terms.json
+++ /dev/null
@@ -1,78 +0,0 @@
-{
- "sol-philosophorum": {
- "id": "sol-philosophorum",
- "name": {
- "en": "Sol Philosophorum"
- },
- "terms": {
- "en": [
- "Pure living Alchemical Spirit of Gold",
- "Refined Essence of Heat & Dryness"
- ]
- },
- "gdGrade": 1
- },
- "luna-philosophorum": {
- "id": "luna-philosophorum",
- "name": {
- "en": "Luna Philosophorum"
- },
- "terms": {
- "en": [
- "Pure living Alchemical Spirit of Silver",
- "Refined Essence of Heat & Moisture"
- ]
- },
- "gdGrade": 1
- },
- "green-lion": {
- "id": "green-lion",
- "name": {
- "en": "Green Lion"
- },
- "terms": {
- "en": [
- "Stem and Root of Radical Essence of Metals"
- ]
- },
- "gdGrade": 1
- },
- "black-dragon": {
- "id": "black-dragon",
- "name": {
- "en": "Black Dragon"
- },
- "terms": {
- "en": [
- "Death - Putrafaction - Decay"
- ]
- },
- "gdGrade": 1
- },
- "king": {
- "id": "king",
- "name": {
- "en": "The King"
- },
- "terms": {
- "en": [
- "Red - Qabalistic Microprosopus",
- "Tiphareth - Analogous to Gold and the Sun"
- ]
- },
- "gdGrade": 1
- },
- "queen": {
- "id": "queen",
- "name": {
- "en": "The Queen"
- },
- "terms": {
- "en": [
- "White - Qabalistic Bride of Microprosopus",
- "Malkah - Analogous to Silver and the Moon"
- ]
- },
- "gdGrade": 1
- }
-}
diff --git a/data/alphabets.json b/data/alphabets.json
deleted file mode 100644
index c8f64ca..0000000
--- a/data/alphabets.json
+++ /dev/null
@@ -1,755 +0,0 @@
-{
- "meta": {
- "description": "Cross-alphabet reference: English (26), Hebrew (22 kabbalah letters), and Greek (24 modern + 3 archaic numerals). Hebrew entries cross-reference hebrewLetters.json and kabbalah-tree.json; Greek entries trace Phoenician/Hebrew origins via hebrewLetterId FK.",
- "sources": [
- "Sefer Yetzirah",
- "Liber 777 — Aleister Crowley",
- "Ancient Greek Alphabet & Isopsephy tradition",
- "ISO 15924",
- "Pythagorean numerology"
- ],
- "notes": "Hebrew kabbalahPathNumber is a FK to kabbalah-tree.json paths[].pathNumber. hebrewLetterId is a FK to hebrewLetters.json. Greek archaic letters (Digamma, Qoppa, Sampi) are marked archaic:true and used only in isopsephy; they are not part of the modern 24-letter Greek alphabet."
- },
- "hebrew": [
- {
- "index": 1,
- "hebrewLetterId": "alef",
- "char": "א",
- "name": "Aleph",
- "transliteration": "A",
- "numerology": 1,
- "meaning": "ox",
- "letterType": "mother",
- "astrology": { "type": "element", "name": "Air" },
- "kabbalahPathNumber": 11,
- "tarot": { "card": "The Fool", "trumpNumber": 0 },
- "greekEquivalent": "alpha"
- },
- {
- "index": 2,
- "hebrewLetterId": "bet",
- "char": "ב",
- "name": "Beth",
- "transliteration": "B",
- "numerology": 2,
- "meaning": "house",
- "letterType": "double",
- "astrology": { "type": "planet", "name": "Mercury" },
- "kabbalahPathNumber": 12,
- "tarot": { "card": "The Magician", "trumpNumber": 1 },
- "greekEquivalent": "beta"
- },
- {
- "index": 3,
- "hebrewLetterId": "gimel",
- "char": "ג",
- "name": "Gimel",
- "transliteration": "G",
- "numerology": 3,
- "meaning": "camel",
- "letterType": "double",
- "astrology": { "type": "planet", "name": "Luna" },
- "kabbalahPathNumber": 13,
- "tarot": { "card": "The High Priestess", "trumpNumber": 2 },
- "greekEquivalent": "gamma"
- },
- {
- "index": 4,
- "hebrewLetterId": "dalet",
- "char": "ד",
- "name": "Daleth",
- "transliteration": "D",
- "numerology": 4,
- "meaning": "door",
- "letterType": "double",
- "astrology": { "type": "planet", "name": "Venus" },
- "kabbalahPathNumber": 14,
- "tarot": { "card": "The Empress", "trumpNumber": 3 },
- "greekEquivalent": "delta"
- },
- {
- "index": 5,
- "hebrewLetterId": "he",
- "char": "ה",
- "name": "Heh",
- "transliteration": "H",
- "numerology": 5,
- "meaning": "window",
- "letterType": "simple",
- "astrology": { "type": "zodiac", "name": "Aries" },
- "kabbalahPathNumber": 15,
- "tarot": { "card": "The Emperor", "trumpNumber": 4 },
- "greekEquivalent": "epsilon"
- },
- {
- "index": 6,
- "hebrewLetterId": "vav",
- "char": "ו",
- "name": "Vav",
- "transliteration": "V",
- "numerology": 6,
- "meaning": "peg, nail, hook",
- "letterType": "simple",
- "astrology": { "type": "zodiac", "name": "Taurus" },
- "kabbalahPathNumber": 16,
- "tarot": { "card": "The Hierophant", "trumpNumber": 5 },
- "greekEquivalent": "digamma"
- },
- {
- "index": 7,
- "hebrewLetterId": "zayin",
- "char": "ז",
- "name": "Zayin",
- "transliteration": "Z",
- "numerology": 7,
- "meaning": "sword, weapon",
- "letterType": "simple",
- "astrology": { "type": "zodiac", "name": "Gemini" },
- "kabbalahPathNumber": 17,
- "tarot": { "card": "The Lovers", "trumpNumber": 6 },
- "greekEquivalent": "zeta"
- },
- {
- "index": 8,
- "hebrewLetterId": "het",
- "char": "ח",
- "name": "Cheth",
- "transliteration": "Ch",
- "numerology": 8,
- "meaning": "enclosure, fence",
- "letterType": "simple",
- "astrology": { "type": "zodiac", "name": "Cancer" },
- "kabbalahPathNumber": 18,
- "tarot": { "card": "The Chariot", "trumpNumber": 7 },
- "greekEquivalent": "eta"
- },
- {
- "index": 9,
- "hebrewLetterId": "tet",
- "char": "ט",
- "name": "Teth",
- "transliteration": "T",
- "numerology": 9,
- "meaning": "serpent",
- "letterType": "simple",
- "astrology": { "type": "zodiac", "name": "Leo" },
- "kabbalahPathNumber": 19,
- "tarot": { "card": "Strength", "trumpNumber": 8 },
- "greekEquivalent": "theta"
- },
- {
- "index": 10,
- "hebrewLetterId": "yod",
- "char": "י",
- "name": "Yod",
- "transliteration": "I",
- "numerology": 10,
- "meaning": "hand",
- "letterType": "simple",
- "astrology": { "type": "zodiac", "name": "Virgo" },
- "kabbalahPathNumber": 20,
- "tarot": { "card": "The Hermit", "trumpNumber": 9 },
- "greekEquivalent": "iota"
- },
- {
- "index": 11,
- "hebrewLetterId": "kaf",
- "char": "כ",
- "name": "Kaph",
- "transliteration": "K",
- "numerology": 20,
- "meaning": "palm of hand",
- "letterType": "double",
- "astrology": { "type": "planet", "name": "Jupiter" },
- "kabbalahPathNumber": 21,
- "tarot": { "card": "Wheel of Fortune", "trumpNumber": 10 },
- "greekEquivalent": "kappa"
- },
- {
- "index": 12,
- "hebrewLetterId": "lamed",
- "char": "ל",
- "name": "Lamed",
- "transliteration": "L",
- "numerology": 30,
- "meaning": "ox-goad",
- "letterType": "simple",
- "astrology": { "type": "zodiac", "name": "Libra" },
- "kabbalahPathNumber": 22,
- "tarot": { "card": "Justice", "trumpNumber": 11 },
- "greekEquivalent": "lambda"
- },
- {
- "index": 13,
- "hebrewLetterId": "mem",
- "char": "מ",
- "name": "Mem",
- "transliteration": "M",
- "numerology": 40,
- "meaning": "water",
- "letterType": "mother",
- "astrology": { "type": "element", "name": "Water" },
- "kabbalahPathNumber": 23,
- "tarot": { "card": "The Hanged Man", "trumpNumber": 12 },
- "greekEquivalent": "mu"
- },
- {
- "index": 14,
- "hebrewLetterId": "nun",
- "char": "נ",
- "name": "Nun",
- "transliteration": "N",
- "numerology": 50,
- "meaning": "fish",
- "letterType": "simple",
- "astrology": { "type": "zodiac", "name": "Scorpio" },
- "kabbalahPathNumber": 24,
- "tarot": { "card": "Death", "trumpNumber": 13 },
- "greekEquivalent": "nu"
- },
- {
- "index": 15,
- "hebrewLetterId": "samekh",
- "char": "ס",
- "name": "Samekh",
- "transliteration": "S",
- "numerology": 60,
- "meaning": "prop, support",
- "letterType": "simple",
- "astrology": { "type": "zodiac", "name": "Sagittarius" },
- "kabbalahPathNumber": 25,
- "tarot": { "card": "Temperance", "trumpNumber": 14 },
- "greekEquivalent": "xi"
- },
- {
- "index": 16,
- "hebrewLetterId": "ayin",
- "char": "ע",
- "name": "Ayin",
- "transliteration": "O",
- "numerology": 70,
- "meaning": "eye",
- "letterType": "simple",
- "astrology": { "type": "zodiac", "name": "Capricorn" },
- "kabbalahPathNumber": 26,
- "tarot": { "card": "The Devil", "trumpNumber": 15 },
- "greekEquivalent": "omicron"
- },
- {
- "index": 17,
- "hebrewLetterId": "pe",
- "char": "פ",
- "name": "Pe",
- "transliteration": "P",
- "numerology": 80,
- "meaning": "mouth",
- "letterType": "double",
- "astrology": { "type": "planet", "name": "Mars" },
- "kabbalahPathNumber": 27,
- "tarot": { "card": "The Tower", "trumpNumber": 16 },
- "greekEquivalent": "pi"
- },
- {
- "index": 18,
- "hebrewLetterId": "tsadi",
- "char": "צ",
- "name": "Tzaddi",
- "transliteration": "Tz",
- "numerology": 90,
- "meaning": "fishhook",
- "letterType": "simple",
- "astrology": { "type": "zodiac", "name": "Aquarius" },
- "kabbalahPathNumber": 28,
- "tarot": { "card": "The Star", "trumpNumber": 17 },
- "greekEquivalent": "qoppa"
- },
- {
- "index": 19,
- "hebrewLetterId": "qof",
- "char": "ק",
- "name": "Qoph",
- "transliteration": "Q",
- "numerology": 100,
- "meaning": "back of the head",
- "letterType": "simple",
- "astrology": { "type": "zodiac", "name": "Pisces" },
- "kabbalahPathNumber": 29,
- "tarot": { "card": "The Moon", "trumpNumber": 18 }
- },
- {
- "index": 20,
- "hebrewLetterId": "resh",
- "char": "ר",
- "name": "Resh",
- "transliteration": "R",
- "numerology": 200,
- "meaning": "head",
- "letterType": "double",
- "astrology": { "type": "planet", "name": "Sol" },
- "kabbalahPathNumber": 30,
- "tarot": { "card": "The Sun", "trumpNumber": 19 },
- "greekEquivalent": "rho"
- },
- {
- "index": 21,
- "hebrewLetterId": "shin",
- "char": "ש",
- "name": "Shin",
- "transliteration": "Sh",
- "numerology": 300,
- "meaning": "tooth",
- "letterType": "mother",
- "astrology": { "type": "element", "name": "Fire" },
- "kabbalahPathNumber": 31,
- "tarot": { "card": "Judgement", "trumpNumber": 20 },
- "greekEquivalent": "sigma"
- },
- {
- "index": 22,
- "hebrewLetterId": "tav",
- "char": "ת",
- "name": "Tav",
- "transliteration": "Th",
- "numerology": 400,
- "meaning": "cross, mark",
- "letterType": "double",
- "astrology": { "type": "planet", "name": "Saturn" },
- "kabbalahPathNumber": 32,
- "tarot": { "card": "The Universe", "trumpNumber": 21 },
- "greekEquivalent": "tau"
- }
- ],
- "greek": [
- {
- "name": "alpha",
- "index": 1,
- "char": "Α",
- "charLower": "α",
- "displayName": "Alpha",
- "transliteration": "A",
- "ipa": "/a/, /aː/",
- "numerology": 1,
- "meaning": "ox (from Phoenician aleph)",
- "hebrewLetterId": "alef",
- "archaic": false
- },
- {
- "name": "beta",
- "index": 2,
- "char": "Β",
- "charLower": "β",
- "displayName": "Beta",
- "transliteration": "B",
- "ipa": "/b/",
- "numerology": 2,
- "meaning": "house (from Phoenician beth)",
- "hebrewLetterId": "bet",
- "archaic": false
- },
- {
- "name": "gamma",
- "index": 3,
- "char": "Γ",
- "charLower": "γ",
- "displayName": "Gamma",
- "transliteration": "G",
- "ipa": "/ɡ/",
- "numerology": 3,
- "meaning": "camel (from Phoenician gimel)",
- "hebrewLetterId": "gimel",
- "archaic": false
- },
- {
- "name": "delta",
- "index": 4,
- "char": "Δ",
- "charLower": "δ",
- "displayName": "Delta",
- "transliteration": "D",
- "ipa": "/d/",
- "numerology": 4,
- "meaning": "door (from Phoenician daleth)",
- "hebrewLetterId": "dalet",
- "archaic": false
- },
- {
- "name": "epsilon",
- "index": 5,
- "char": "Ε",
- "charLower": "ε",
- "displayName": "Epsilon",
- "transliteration": "E",
- "ipa": "/e/",
- "numerology": 5,
- "meaning": "bare / simple e (adapted from Phoenician he)",
- "hebrewLetterId": "he",
- "archaic": false
- },
- {
- "name": "digamma",
- "index": 6,
- "char": "Ϝ",
- "charLower": "ϝ",
- "displayName": "Digamma",
- "transliteration": "W/V",
- "ipa": "/w/",
- "numerology": 6,
- "meaning": "double-gamma; from Phoenician waw (same root as Hebrew Vav)",
- "hebrewLetterId": "vav",
- "archaic": true
- },
- {
- "name": "zeta",
- "index": 7,
- "char": "Ζ",
- "charLower": "ζ",
- "displayName": "Zeta",
- "transliteration": "Z",
- "ipa": "/dz/ or /z/",
- "numerology": 7,
- "meaning": "weapon (from Phoenician zayin)",
- "hebrewLetterId": "zayin",
- "archaic": false
- },
- {
- "name": "eta",
- "index": 8,
- "char": "Η",
- "charLower": "η",
- "displayName": "Eta",
- "transliteration": "E / H",
- "ipa": "/eː/",
- "numerology": 8,
- "meaning": "fence, enclosure (from Phoenician heth)",
- "hebrewLetterId": "het",
- "archaic": false
- },
- {
- "name": "theta",
- "index": 9,
- "char": "Θ",
- "charLower": "θ",
- "displayName": "Theta",
- "transliteration": "Th",
- "ipa": "/tʰ/, /θ/",
- "numerology": 9,
- "meaning": "wheel; from Phoenician teth (serpent)",
- "hebrewLetterId": "tet",
- "archaic": false
- },
- {
- "name": "iota",
- "index": 10,
- "char": "Ι",
- "charLower": "ι",
- "displayName": "Iota",
- "transliteration": "I",
- "ipa": "/i/, /iː/",
- "numerology": 10,
- "meaning": "hand (from Phoenician yod)",
- "hebrewLetterId": "yod",
- "archaic": false
- },
- {
- "name": "kappa",
- "index": 11,
- "char": "Κ",
- "charLower": "κ",
- "displayName": "Kappa",
- "transliteration": "K",
- "ipa": "/k/",
- "numerology": 20,
- "meaning": "palm of hand (from Phoenician kaph)",
- "hebrewLetterId": "kaf",
- "archaic": false
- },
- {
- "name": "lambda",
- "index": 12,
- "char": "Λ",
- "charLower": "λ",
- "displayName": "Lambda",
- "transliteration": "L",
- "ipa": "/l/",
- "numerology": 30,
- "meaning": "ox-goad (from Phoenician lamed)",
- "hebrewLetterId": "lamed",
- "archaic": false
- },
- {
- "name": "mu",
- "index": 13,
- "char": "Μ",
- "charLower": "μ",
- "displayName": "Mu",
- "transliteration": "M",
- "ipa": "/m/",
- "numerology": 40,
- "meaning": "water (from Phoenician mem)",
- "hebrewLetterId": "mem",
- "archaic": false
- },
- {
- "name": "nu",
- "index": 14,
- "char": "Ν",
- "charLower": "ν",
- "displayName": "Nu",
- "transliteration": "N",
- "ipa": "/n/",
- "numerology": 50,
- "meaning": "fish (from Phoenician nun)",
- "hebrewLetterId": "nun",
- "archaic": false
- },
- {
- "name": "xi",
- "index": 15,
- "char": "Ξ",
- "charLower": "ξ",
- "displayName": "Xi",
- "transliteration": "X",
- "ipa": "/ks/",
- "numerology": 60,
- "meaning": "prop/support (from Phoenician samekh)",
- "hebrewLetterId": "samekh",
- "archaic": false
- },
- {
- "name": "omicron",
- "index": 16,
- "char": "Ο",
- "charLower": "ο",
- "displayName": "Omicron",
- "transliteration": "O",
- "ipa": "/o/",
- "numerology": 70,
- "meaning": "small o; eye (from Phoenician ayin)",
- "hebrewLetterId": "ayin",
- "archaic": false
- },
- {
- "name": "pi",
- "index": 17,
- "char": "Π",
- "charLower": "π",
- "displayName": "Pi",
- "transliteration": "P",
- "ipa": "/p/",
- "numerology": 80,
- "meaning": "mouth (from Phoenician pe)",
- "hebrewLetterId": "pe",
- "archaic": false
- },
- {
- "name": "qoppa",
- "index": 18,
- "char": "Ϟ",
- "charLower": "ϟ",
- "displayName": "Qoppa",
- "transliteration": "Q",
- "ipa": "/kʷ/",
- "numerology": 90,
- "meaning": "back of head (from Phoenician qoph)",
- "hebrewLetterId": "qof",
- "archaic": true
- },
- {
- "name": "rho",
- "index": 19,
- "char": "Ρ",
- "charLower": "ρ",
- "displayName": "Rho",
- "transliteration": "R",
- "ipa": "/r/",
- "numerology": 100,
- "meaning": "head (from Phoenician resh)",
- "hebrewLetterId": "resh",
- "archaic": false
- },
- {
- "name": "sigma",
- "index": 20,
- "char": "Σ",
- "charLower": "σ",
- "charFinal": "ς",
- "displayName": "Sigma",
- "transliteration": "S",
- "ipa": "/s/",
- "numerology": 200,
- "meaning": "tooth (from Phoenician shin)",
- "hebrewLetterId": "shin",
- "archaic": false
- },
- {
- "name": "tau",
- "index": 21,
- "char": "Τ",
- "charLower": "τ",
- "displayName": "Tau",
- "transliteration": "T",
- "ipa": "/t/",
- "numerology": 300,
- "meaning": "cross, mark (from Phoenician tav)",
- "hebrewLetterId": "tav",
- "archaic": false
- },
- {
- "name": "upsilon",
- "index": 22,
- "char": "Υ",
- "charLower": "υ",
- "displayName": "Upsilon",
- "transliteration": "U/Y",
- "ipa": "/y/, /u/",
- "numerology": 400,
- "meaning": "simple upsilon; from Phoenician waw (also root of Vav, W, U, V, F)",
- "hebrewLetterId": "vav",
- "archaic": false
- },
- {
- "name": "phi",
- "index": 23,
- "char": "Φ",
- "charLower": "φ",
- "displayName": "Phi",
- "transliteration": "Ph/F",
- "ipa": "/pʰ/, /f/",
- "numerology": 500,
- "meaning": "light; late Phoenician pe secondary derivative",
- "archaic": false
- },
- {
- "name": "chi",
- "index": 24,
- "char": "Χ",
- "charLower": "χ",
- "displayName": "Chi",
- "transliteration": "Ch/Kh",
- "ipa": "/kʰ/, /x/",
- "numerology": 600,
- "meaning": "cross-variant; possible relation to Phoenician heth or teth",
- "archaic": false
- },
- {
- "name": "psi",
- "index": 25,
- "char": "Ψ",
- "charLower": "ψ",
- "displayName": "Psi",
- "transliteration": "Ps",
- "ipa": "/ps/",
- "numerology": 700,
- "meaning": "soul, trident; some scholars link to Phoenician tsade",
- "hebrewLetterId": "tsadi",
- "archaic": false
- },
- {
- "name": "omega",
- "index": 26,
- "char": "Ω",
- "charLower": "ω",
- "displayName": "Omega",
- "transliteration": "O",
- "ipa": "/oː/",
- "numerology": 800,
- "meaning": "great o; from ayin (eye) family, contrasted with omicron",
- "hebrewLetterId": "ayin",
- "archaic": false
- },
- {
- "name": "sampi",
- "index": 27,
- "char": "Ϡ",
- "charLower": "ϡ",
- "displayName": "Sampi",
- "transliteration": "Ss/Ts",
- "ipa": "/ss/ or /ts/",
- "numerology": 900,
- "meaning": "like pi (variant); Phoenician tsade origin",
- "hebrewLetterId": "tsadi",
- "archaic": true
- }
- ],
- "english": [
- { "index": 1, "letter": "A", "ipa": "/eɪ/", "pythagorean": 1, "hebrewLetterId": "alef", "greekEquivalent": "alpha" },
- { "index": 2, "letter": "B", "ipa": "/biː/", "pythagorean": 2, "hebrewLetterId": "bet", "greekEquivalent": "beta" },
- { "index": 3, "letter": "C", "ipa": "/siː/", "pythagorean": 3, "hebrewLetterId": "gimel", "greekEquivalent": "gamma" },
- { "index": 4, "letter": "D", "ipa": "/diː/", "pythagorean": 4, "hebrewLetterId": "dalet", "greekEquivalent": "delta" },
- { "index": 5, "letter": "E", "ipa": "/iː/", "pythagorean": 5, "hebrewLetterId": "he", "greekEquivalent": "epsilon" },
- { "index": 6, "letter": "F", "ipa": "/ɛf/", "pythagorean": 6, "hebrewLetterId": "vav", "greekEquivalent": "digamma" },
- { "index": 7, "letter": "G", "ipa": "/dʒiː/","pythagorean": 7, "hebrewLetterId": "gimel", "greekEquivalent": "gamma" },
- { "index": 8, "letter": "H", "ipa": "/eɪtʃ/","pythagorean": 8, "hebrewLetterId": "he", "greekEquivalent": "eta" },
- { "index": 9, "letter": "I", "ipa": "/aɪ/", "pythagorean": 9, "hebrewLetterId": "yod", "greekEquivalent": "iota" },
- { "index": 10, "letter": "J", "ipa": "/dʒeɪ/","pythagorean": 1, "hebrewLetterId": "yod", "greekEquivalent": "iota" },
- { "index": 11, "letter": "K", "ipa": "/keɪ/", "pythagorean": 2, "hebrewLetterId": "kaf", "greekEquivalent": "kappa" },
- { "index": 12, "letter": "L", "ipa": "/ɛl/", "pythagorean": 3, "hebrewLetterId": "lamed", "greekEquivalent": "lambda" },
- { "index": 13, "letter": "M", "ipa": "/ɛm/", "pythagorean": 4, "hebrewLetterId": "mem", "greekEquivalent": "mu" },
- { "index": 14, "letter": "N", "ipa": "/ɛn/", "pythagorean": 5, "hebrewLetterId": "nun", "greekEquivalent": "nu" },
- { "index": 15, "letter": "O", "ipa": "/oʊ/", "pythagorean": 6, "hebrewLetterId": "ayin", "greekEquivalent": "omicron" },
- { "index": 16, "letter": "P", "ipa": "/piː/", "pythagorean": 7, "hebrewLetterId": "pe", "greekEquivalent": "pi" },
- { "index": 17, "letter": "Q", "ipa": "/kjuː/","pythagorean": 8, "hebrewLetterId": "qof", "greekEquivalent": "qoppa" },
- { "index": 18, "letter": "R", "ipa": "/ɑːr/", "pythagorean": 9, "hebrewLetterId": "resh", "greekEquivalent": "rho" },
- { "index": 19, "letter": "S", "ipa": "/ɛs/", "pythagorean": 1, "hebrewLetterId": "samekh", "greekEquivalent": "sigma" },
- { "index": 20, "letter": "T", "ipa": "/tiː/", "pythagorean": 2, "hebrewLetterId": "tav", "greekEquivalent": "tau" },
- { "index": 21, "letter": "U", "ipa": "/juː/", "pythagorean": 3, "hebrewLetterId": "vav", "greekEquivalent": "upsilon" },
- { "index": 22, "letter": "V", "ipa": "/viː/", "pythagorean": 4, "hebrewLetterId": "vav", "greekEquivalent": "upsilon" },
- { "index": 23, "letter": "W", "ipa": "/ˈdʌbljuː/", "pythagorean": 5, "hebrewLetterId": "vav", "greekEquivalent": "digamma" },
- { "index": 24, "letter": "X", "ipa": "/ɛks/", "pythagorean": 6, "hebrewLetterId": "samekh", "greekEquivalent": "xi" },
- { "index": 25, "letter": "Y", "ipa": "/waɪ/", "pythagorean": 7, "hebrewLetterId": "yod", "greekEquivalent": "upsilon" },
- { "index": 26, "letter": "Z", "ipa": "/zɛd/", "pythagorean": 8, "hebrewLetterId": "zayin", "greekEquivalent": "zeta" }
- ],
- "arabic": [
- { "index": 1, "name": "alif", "char": "ا", "nameArabic": "أَلِف", "transliteration": "ā / ʾ", "ipa": "/ʔ/, /aː/", "abjad": 1, "meaning": "ox; breath; onset", "category": "solar", "hebrewLetterId": "alef", "forms": { "isolated": "ا", "final": "ـا" } },
- { "index": 2, "name": "ba", "char": "ب", "nameArabic": "بَاء", "transliteration": "b", "ipa": "/b/", "abjad": 2, "meaning": "house", "category": "lunar", "hebrewLetterId": "bet", "forms": { "isolated": "ب", "initial": "بـ", "medial": "ـبـ", "final": "ـب" } },
- { "index": 3, "name": "jeem", "char": "ج", "nameArabic": "جِيم", "transliteration": "j", "ipa": "/d͡ʒ/", "abjad": 3, "meaning": "camel; beauty", "category": "lunar", "hebrewLetterId": "gimel", "forms": { "isolated": "ج", "initial": "جـ", "medial": "ـجـ", "final": "ـج" } },
- { "index": 4, "name": "dal", "char": "د", "nameArabic": "دَال", "transliteration": "d", "ipa": "/d/", "abjad": 4, "meaning": "door", "category": "solar", "hebrewLetterId": "dalet", "forms": { "isolated": "د", "final": "ـد" } },
- { "index": 5, "name": "ha", "char": "ه", "nameArabic": "هَاء", "transliteration": "h", "ipa": "/h/", "abjad": 5, "meaning": "window; breath; exclamation", "category": "lunar", "hebrewLetterId": "he", "forms": { "isolated": "ه", "initial": "هـ", "medial": "ـهـ", "final": "ـه" } },
- { "index": 6, "name": "waw", "char": "و", "nameArabic": "وَاو", "transliteration": "w / ū", "ipa": "/w/, /uː/", "abjad": 6, "meaning": "hook; peg; and", "category": "solar", "hebrewLetterId": "vav", "forms": { "isolated": "و", "final": "ـو" } },
- { "index": 7, "name": "zayn", "char": "ز", "nameArabic": "زَاي", "transliteration": "z", "ipa": "/z/", "abjad": 7, "meaning": "adornment; weapon", "category": "solar", "hebrewLetterId": "zayin", "forms": { "isolated": "ز", "final": "ـز" } },
- { "index": 8, "name": "ha_khaa", "char": "ح", "nameArabic": "حَاء", "transliteration": "ḥ", "ipa": "/ħ/", "abjad": 8, "meaning": "fence; enclosed courtyard; breath","category": "lunar", "hebrewLetterId": "het", "forms": { "isolated": "ح", "initial": "حـ", "medial": "ـحـ", "final": "ـح" } },
- { "index": 9, "name": "ta_tay", "char": "ط", "nameArabic": "طَاء", "transliteration": "ṭ", "ipa": "/tˤ/", "abjad": 9, "meaning": "serpent; goodness", "category": "solar", "hebrewLetterId": "tet", "forms": { "isolated": "ط", "initial": "طـ", "medial": "ـطـ", "final": "ـط" } },
- { "index": 10, "name": "ya", "char": "ي", "nameArabic": "يَاء", "transliteration": "y / ī", "ipa": "/j/, /iː/", "abjad": 10, "meaning": "hand", "category": "solar", "hebrewLetterId": "yod", "forms": { "isolated": "ي", "initial": "يـ", "medial": "ـيـ", "final": "ـي" } },
- { "index": 11, "name": "kaf", "char": "ك", "nameArabic": "كَاف", "transliteration": "k", "ipa": "/k/", "abjad": 20, "meaning": "palm of hand; like", "category": "solar", "hebrewLetterId": "kaf", "forms": { "isolated": "ك", "initial": "كـ", "medial": "ـكـ", "final": "ـك" } },
- { "index": 12, "name": "lam", "char": "ل", "nameArabic": "لَام", "transliteration": "l", "ipa": "/l/", "abjad": 30, "meaning": "ox-goad; for/to", "category": "solar", "hebrewLetterId": "lamed", "forms": { "isolated": "ل", "initial": "لـ", "medial": "ـلـ", "final": "ـل" } },
- { "index": 13, "name": "meem", "char": "م", "nameArabic": "مِيم", "transliteration": "m", "ipa": "/m/", "abjad": 40, "meaning": "water", "category": "lunar", "hebrewLetterId": "mem", "forms": { "isolated": "م", "initial": "مـ", "medial": "ـمـ", "final": "ـم" } },
- { "index": 14, "name": "nun", "char": "ن", "nameArabic": "نُون", "transliteration": "n", "ipa": "/n/", "abjad": 50, "meaning": "fish; inkwell", "category": "solar", "hebrewLetterId": "nun", "forms": { "isolated": "ن", "initial": "نـ", "medial": "ـنـ", "final": "ـن" } },
- { "index": 15, "name": "seen", "char": "س", "nameArabic": "سِين", "transliteration": "s", "ipa": "/s/", "abjad": 60, "meaning": "tooth; prop; support", "category": "solar", "hebrewLetterId": "samekh", "forms": { "isolated": "س", "initial": "سـ", "medial": "ـسـ", "final": "ـس" } },
- { "index": 16, "name": "ayn", "char": "ع", "nameArabic": "عَيْن", "transliteration": "ʿ", "ipa": "/ʕ/", "abjad": 70, "meaning": "eye; spring of water", "category": "lunar", "hebrewLetterId": "ayin", "forms": { "isolated": "ع", "initial": "عـ", "medial": "ـعـ", "final": "ـع" } },
- { "index": 17, "name": "fa", "char": "ف", "nameArabic": "فَاء", "transliteration": "f", "ipa": "/f/", "abjad": 80, "meaning": "mouth", "category": "lunar", "hebrewLetterId": "pe", "forms": { "isolated": "ف", "initial": "فـ", "medial": "ـفـ", "final": "ـف" } },
- { "index": 18, "name": "sad", "char": "ص", "nameArabic": "صَاد", "transliteration": "ṣ", "ipa": "/sˤ/", "abjad": 90, "meaning": "twisted; fishhook", "category": "solar", "hebrewLetterId": "tsadi", "forms": { "isolated": "ص", "initial": "صـ", "medial": "ـصـ", "final": "ـص" } },
- { "index": 19, "name": "qaf", "char": "ق", "nameArabic": "قَاف", "transliteration": "q", "ipa": "/q/", "abjad": 100, "meaning": "back of neck; ape", "category": "lunar", "hebrewLetterId": "qof", "forms": { "isolated": "ق", "initial": "قـ", "medial": "ـقـ", "final": "ـق" } },
- { "index": 20, "name": "ra", "char": "ر", "nameArabic": "رَاء", "transliteration": "r", "ipa": "/r/", "abjad": 200, "meaning": "head", "category": "solar", "hebrewLetterId": "resh", "forms": { "isolated": "ر", "final": "ـر" } },
- { "index": 21, "name": "sheen", "char": "ش", "nameArabic": "شِين", "transliteration": "sh", "ipa": "/ʃ/", "abjad": 300, "meaning": "tooth; composite; sun", "category": "solar", "hebrewLetterId": "shin", "forms": { "isolated": "ش", "initial": "شـ", "medial": "ـشـ", "final": "ـش" } },
- { "index": 22, "name": "ta", "char": "ت", "nameArabic": "تَاء", "transliteration": "t", "ipa": "/t/", "abjad": 400, "meaning": "mark; sign; covenant", "category": "solar", "hebrewLetterId": "tav", "forms": { "isolated": "ت", "initial": "تـ", "medial": "ـتـ", "final": "ـت" } },
- { "index": 23, "name": "tha", "char": "ث", "nameArabic": "ثَاء", "transliteration": "th", "ipa": "/θ/", "abjad": 500, "meaning": "thorny; fixed", "category": "solar", "hebrewLetterId": null, "forms": { "isolated": "ث", "initial": "ثـ", "medial": "ـثـ", "final": "ـث" } },
- { "index": 24, "name": "kha", "char": "خ", "nameArabic": "خَاء", "transliteration": "kh", "ipa": "/x/", "abjad": 600, "meaning": "penetrating; veiled", "category": "lunar", "hebrewLetterId": null, "forms": { "isolated": "خ", "initial": "خـ", "medial": "ـخـ", "final": "ـخ" } },
- { "index": 25, "name": "dhal", "char": "ذ", "nameArabic": "ذَال", "transliteration": "dh", "ipa": "/ð/", "abjad": 700, "meaning": "this; possessor of", "category": "solar", "hebrewLetterId": null, "forms": { "isolated": "ذ", "final": "ـذ" } },
- { "index": 26, "name": "dad", "char": "ض", "nameArabic": "ضَاد", "transliteration": "ḍ", "ipa": "/dˤ/", "abjad": 800, "meaning": "ribs; darkness; unique letter", "category": "solar", "hebrewLetterId": null, "forms": { "isolated": "ض", "initial": "ضـ", "medial": "ـضـ", "final": "ـض" } },
- { "index": 27, "name": "dha", "char": "ظ", "nameArabic": "ظَاء", "transliteration": "ẓ", "ipa": "/ðˤ/", "abjad": 900, "meaning": "shadow; manifest; back", "category": "solar", "hebrewLetterId": null, "forms": { "isolated": "ظ", "initial": "ظـ", "medial": "ـظـ", "final": "ـظ" } },
- { "index": 28, "name": "ghayn", "char": "غ", "nameArabic": "غَيْن", "transliteration": "gh", "ipa": "/ɣ/", "abjad": 1000, "meaning": "absence; obscured eye; rain", "category": "lunar", "hebrewLetterId": null, "forms": { "isolated": "غ", "initial": "غـ", "medial": "ـغـ", "final": "ـغ" } }
- ],
- "enochian": [
- { "index": 1, "id": "A", "char": "A", "title": "Un", "englishLetters": ["A"], "transliteration": "ah", "elementOrPlanet": "taurus", "tarot": "hierophant", "numerology": 6, "hebrewLetterId": "alef" },
- { "index": 2, "id": "B", "char": "B", "title": "Pe", "englishLetters": ["B"], "transliteration": "beh", "elementOrPlanet": "aries", "tarot": "star", "numerology": 5, "hebrewLetterId": "bet" },
- { "index": 3, "id": "C", "char": "C", "title": "Veh", "englishLetters": ["C", "K"], "transliteration": "co", "elementOrPlanet": "fire", "tarot": "judgement", "numerology": 300, "hebrewLetterId": null },
- { "index": 4, "id": "D", "char": "D", "title": "Gal", "englishLetters": ["D"], "transliteration": "deh", "elementOrPlanet": "spirit", "tarot": "empress", "numerology": 4, "hebrewLetterId": "dalet" },
- { "index": 5, "id": "E", "char": "E", "title": "Graph", "englishLetters": ["E"], "transliteration": "ee", "elementOrPlanet": "virgo", "tarot": "hermit", "numerology": 10, "hebrewLetterId": "he" },
- { "index": 6, "id": "F", "char": "F", "title": "Orth", "englishLetters": ["F"], "transliteration": "eff", "elementOrPlanet": "Cauda Draonis", "tarot": "juggler", "numerology": 3, "hebrewLetterId": "vav" },
- { "index": 7, "id": "G", "char": "G", "title": "Ged", "englishLetters": ["G"], "transliteration": "gee", "elementOrPlanet": "cancer", "tarot": "chariot", "numerology": 8, "hebrewLetterId": "gimel" },
- { "index": 8, "id": "H", "char": "H", "title": "Na-hath", "englishLetters": ["H"], "transliteration": "heh", "elementOrPlanet": "air", "tarot": "fool", "numerology": 1, "hebrewLetterId": "he" },
- { "index": 9, "id": "I", "char": "I", "title": "Gon", "englishLetters": ["I", "Y", "J"], "transliteration": "ee", "elementOrPlanet": "sagittarius", "tarot": "temperance", "numerology": 60, "hebrewLetterId": "yod" },
- { "index": 10, "id": "L", "char": "L", "title": "Ur", "englishLetters": ["L"], "transliteration": "el, leh", "elementOrPlanet": "cancer", "tarot": "charit", "numerology": 8, "hebrewLetterId": "lamed" },
- { "index": 11, "id": "M", "char": "M", "title": "Tal", "englishLetters": ["M"], "transliteration": "em", "elementOrPlanet": "aquarius", "tarot": "emperor", "numerology": 90, "hebrewLetterId": "mem" },
- { "index": 12, "id": "N", "char": "N", "title": "Drun", "englishLetters": ["N"], "transliteration": "en", "elementOrPlanet": "scorpio", "tarot": "death", "numerology": 50, "hebrewLetterId": "nun" },
- { "index": 13, "id": "O", "char": "O", "title": "Med", "englishLetters": ["O"], "transliteration": "oh", "elementOrPlanet": "libra", "tarot": "justice", "numerology": 30, "hebrewLetterId": "ayin" },
- { "index": 14, "id": "P", "char": "P", "title": "Mals", "englishLetters": ["P"], "transliteration": "peh", "elementOrPlanet": "leo", "tarot": "strength", "numerology": 9, "hebrewLetterId": "pe" },
- { "index": 15, "id": "Q", "char": "Q", "title": "Ger", "englishLetters": ["Q"], "transliteration": "quo", "elementOrPlanet": "water", "tarot": "hanged man", "numerology": 40, "hebrewLetterId": "qof" },
- { "index": 16, "id": "R", "char": "R", "title": "Don", "englishLetters": ["R"], "transliteration": "reh, ar", "elementOrPlanet": "pesces", "tarot": "moon", "numerology": 100, "hebrewLetterId": "resh" },
- { "index": 17, "id": "S", "char": "S", "title": "Fam", "englishLetters": ["S"], "transliteration": "she, ess", "elementOrPlanet": "gemini", "tarot": "lovers", "numerology": 7, "hebrewLetterId": "samekh" },
- { "index": 18, "id": "T", "char": "T", "title": "Gisa", "englishLetters": ["T"], "transliteration": "teh", "elementOrPlanet": "leo", "tarot": "strength", "numerology": 9, "hebrewLetterId": "tav" },
- { "index": 19, "id": "V", "char": "V", "title": "Vau", "englishLetters": ["U", "V", "W"], "transliteration": "vaa", "elementOrPlanet": "capricorn", "tarot": "devil", "numerology": 70, "hebrewLetterId": "vav" },
- { "index": 20, "id": "X", "char": "X", "title": "Pal", "englishLetters": ["X"], "transliteration": "s, tz", "elementOrPlanet": "earth", "tarot": "universe", "numerology": 400, "hebrewLetterId": "samekh" },
- { "index": 21, "id": "Z", "char": "Z", "title": "Ceph", "englishLetters": ["Z"], "transliteration": "zod, zee", "elementOrPlanet": "leo", "tarot": "strength", "numerology": 9, "hebrewLetterId": "zayin" }
- ]
-}
diff --git a/data/astrology/houses.json b/data/astrology/houses.json
deleted file mode 100644
index 23155e9..0000000
--- a/data/astrology/houses.json
+++ /dev/null
@@ -1,170 +0,0 @@
-[
- {
- "index": 1,
- "zodiacId": "aries",
- "motto": {
- "la": "Vita",
- "en": "Life"
- },
- "name": {
- "en": "House of Self"
- },
- "interpretation": {
- "en": "Physical appearance, identity and characteristics. Resourcefulness. Outlook and impressions. Ego/personality. Goals. Determination. Beginnings and initiatives."
- }
- },
- {
- "index": 2,
- "zodiacId": "taurus",
- "motto": {
- "la": "Lucrum",
- "en": "Gain"
- },
- "name": {
- "en": "House of Value"
- },
- "interpretation": {
- "en": "Material and immaterial things of certain value. Money. Possessions and acquisitions. Cultivation. Perseverance. Substance. Self-worth."
- }
- },
- {
- "index": 3,
- "zodiacId": "gemini",
- "motto": {
- "la": "Fratres",
- "en": "Order"
- },
- "name": {
- "en": "House of Sharing"
- },
- "interpretation": {
- "en": "Communication. Distribution/generosity. Intelligence/development. Siblings, cousins. Locomotion and transportation. Ephemera."
- }
- },
- {
- "index": 4,
- "zodiacId": "cancer",
- "motto": {
- "la": "Genitor",
- "en": "Parent"
- },
- "name": {
- "en": "House of Home and Family"
- },
- "interpretation": {
- "en": "Ancestry, heritage, roots. Foundation and environment. Mother or caretaker. Housing and the household. Neighborhood matters. Comfort, security/safety. Tidiness. Pets."
- }
- },
- {
- "index": 5,
- "zodiacId": "leo",
- "motto": {
- "la": "Nati",
- "en": "Children"
- },
- "name": {
- "en": "House of Pleasure"
- },
- "interpretation": {
- "en": "Recreational and leisure activities. Things which make for enjoyment and entertainment. Games/gambling/risk. Romance and limerence. Children/fertility. Self-expression. Courage."
- }
- },
- {
- "index": 6,
- "zodiacId": "virgo",
- "motto": {
- "la": "Valetudo",
- "en": "Health"
- },
- "name": {
- "en": "House of Health"
- },
- "interpretation": {
- "en": "Routine tasks and duties. Skills or training acquired. Employment (job). Service and being served. Strength, vitality. Wellness and healthcare."
- }
- },
- {
- "index": 7,
- "zodiacId": "libra",
- "motto": {
- "la": "Uxor",
- "en": "Spouse"
- },
- "name": {
- "en": "House of Balance"
- },
- "interpretation": {
- "en": "Partnerships. Marriage and business matters. Diplomacy. Agreements, contracts and all things official. Equilibrium."
- }
- },
- {
- "index": 8,
- "zodiacId": "scorpio",
- "motto": {
- "la": "Mors",
- "en": "Death"
- },
- "name": {
- "en": "House of Transformation"
- },
- "interpretation": {
- "en": "Cycles of deaths and rebirth. Sexual relationships and commitments of all kinds. Joint funds, finances. Other person's resource. Karma and debt (judgment). Regeneration. Self-transformation."
- }
- },
- {
- "index": 9,
- "zodiacId": "sagittarius",
- "motto": {
- "la": "Iter",
- "en": "Passage"
- },
- "name": {
- "en": "House of Purpose"
- },
- "interpretation": {
- "en": "Travel and foreign affairs. Culture. Expansion. Law and ethics. Education/learning/knowledge. Philosophical interests, belief systems. Experience through exploration. Things long-term."
- }
- },
- {
- "index": 10,
- "zodiacId": "capricorn",
- "motto": {
- "la": "Regnum",
- "en": "Kingdom"
- },
- "name": {
- "en": "House of Enterprise"
- },
- "interpretation": {
- "en": "Ambitions. Motivations. Career, achievements. Society and government. Father or authority. Notoriety. Advantage."
- }
- },
- {
- "index": 11,
- "zodiacId": "aquarius",
- "motto": {
- "la": "Benefacta",
- "en": "Support"
- },
- "name": {
- "en": "House of Blessings"
- },
- "interpretation": {
- "en": "Benefits from effort. Friends and acquaintances of like-minded attitudes. Belonging. Groups, communities, and associations. Charity. Connectedness/networking. Love. Wish fulfillment. Wealth."
- }
- },
- {
- "index": 12,
- "zodiacId": "pisces",
- "motto": {
- "la": "Carcer",
- "en": "Rehabilitation"
- },
- "name": {
- "en": "House of Sacrifice"
- },
- "interpretation": {
- "en": "Privacy, refuge; seclusion and retreating. Creativity. Clandestiny↔Revelation. Intuition. Extremes/abundance, but also addictions. Luck, miracles. Releasing/relinquishing, healing/cleansing/rejuvenation, forgiveness, and peacefulness. Finality/completion/conclusion."
- }
- }
-]
diff --git a/data/astrology/planets.json b/data/astrology/planets.json
deleted file mode 100644
index 1e3e779..0000000
--- a/data/astrology/planets.json
+++ /dev/null
@@ -1,233 +0,0 @@
-{
- "primum-mobile": {
- "id": "primum-mobile",
- "name": {
- "en": {
- "en": "Primum Mobile"
- },
- "he": {
- "he": "ראשית הגלגולים",
- "roman": "Roshit HaGilgulim"
- }
- }
- },
- "zodiac": {
- "id": "zodiac",
- "name": {
- "en": {
- "en": "Zodiac"
- },
- "he": {
- "he": "מזלות",
- "roman": "Mazalot"
- }
- }
- },
- "olam-yesodot": {
- "id": "olam-yesodot",
- "name": {
- "en": {
- "en": "World of Foundations"
- },
- "he": {
- "he": "עולם היסודות",
- "roman": "Olam haYesodot"
- }
- }
- },
- "sol": {
- "id": "sol",
- "symbol": "☉︎",
- "hebrewLetterId": "resh",
- "name": {
- "en": {
- "en": "Sol"
- },
- "he": {
- "he": "שמש",
- "roman": "Shemesh",
- "en": "Sun"
- }
- },
- "godNameId": "yhvh-eloha-vedaat",
- "archangelId": "michael",
- "intelligenceId": "nakhiel",
- "spiritId": "sorath",
- "magickTypes": {
- "en": "Career success and progression, establishing harmony, healing and improving health, leadership skills, acquiring money and resources, promotion, strengthening willpower"
- }
- },
- "mercury": {
- "id": "mercury",
- "symbol": "☿︎",
- "hebrewLetterId": "bet",
- "name": {
- "en": {
- "en": "Mercury"
- },
- "he": {
- "he": "כוכב",
- "roman": "Kochav"
- }
- },
- "godNameId": "elohim-tzvaot",
- "archangelId": "raphael",
- "intelligenceId": "tiriel",
- "spiritId": "taphthartharath",
- "magickTypes": {
- "en": "Business success, improving communication skills, developing knowledge and memory, diplomacy, exam success, divination, developing influence, protection when traveling by air and land, learning music"
- }
- },
- "venus": {
- "id": "venus",
- "symbol": "♀︎",
- "hebrewLetterId": "dalet",
- "name": {
- "en": {
- "en": "Venus"
- },
- "he": {
- "he": "נגה",
- "roman": "Noga"
- }
- },
- "godNameId": "yhvh-tzvaot",
- "archangelId": "anael",
- "intelligenceId": "hagiel",
- "spiritId": "kedemel",
- "magickTypes": {
- "en": "Increasing attractiveness and self-confidence, beauty and passion, enhancing creativity, improving fertility, developing friendships, obtaining love"
- }
- },
- "earth": {
- "id": "earth",
- "symbol": "♁︎",
- "name": {
- "en": {
- "en": "Earth"
- }
- }
- },
- "luna": {
- "id": "luna",
- "symbol": "☾︎",
- "hebrewLetterId": "gimel",
- "name": {
- "en": {
- "en": "Luna"
- },
- "he": {
- "he": "לבנה",
- "roman": "Levanah",
- "en": "White"
- }
- },
- "godNameId": "shaddai-el-chai",
- "archangelId": "gabriel",
- "intelligenceId": "shelachel",
- "spiritId": "chasmodai",
- "magickTypes": {
- "en": "Developing clairvoyance and other psychic skills, ensuring safe childbirth, divination, glamour and illusions, lucid dreaming, protection when traveling by sea"
- }
- },
- "mars": {
- "id": "mars",
- "symbol": "♂︎",
- "hebrewLetterId": "pe",
- "name": {
- "en": {
- "en": "Mars"
- },
- "he": {
- "he": "מאדים",
- "roman": "Ma'adim"
- }
- },
- "godNameId": "elohim-gibor",
- "archangelId": "zamael",
- "intelligenceId": "graphiel",
- "spiritId": "bartzabel",
- "magickTypes": {
- "en": "Controlling anger, increasing courage, enhancing energy and passion, increasing vigour and sex drive"
- }
- },
- "jupiter": {
- "id": "jupiter",
- "symbol": "♃︎",
- "hebrewLetterId": "kaf",
- "name": {
- "en": {
- "en": "Jupiter"
- },
- "he": {
- "he": "צדק",
- "roman": "Tzedek",
- "en": "Justice"
- }
- },
- "godNameId": "el",
- "archangelId": "sachiel",
- "intelligenceId": "iophiel",
- "spiritId": "hismael",
- "magickTypes": {
- "en": "Career success, developing ambition and enthusiasm, improving fortune and luck, general health, acquiring honour, improving sense of humour, legal matters and dealing with the establishment, developing leadership skills"
- }
- },
- "saturn": {
- "id": "saturn",
- "symbol": "♄︎",
- "name": {
- "en": {
- "en": "Saturn"
- },
- "he": {
- "he": "שַׁבְּתַאי",
- "roman": "Shabbathai"
- }
- },
- "hebrewLetterId": "tav",
- "godNameId": "yhvh-elohim",
- "archangelId": "cassiel",
- "intelligenceId": "agiel",
- "spiritId": "zazel",
- "magickTypes": {
- "en": "Performing duty, establishing balance and equilibrium, dispelling illusions, protecting the home, legal matters, developing patience and self-discipline"
- }
- },
- "uranus": {
- "id": "uranus",
- "symbol": "⛢︎",
- "name": {
- "en": {
- "en": "Uranus"
- }
- }
- },
- "neptune": {
- "id": "neptune",
- "symbol": "♆︎",
- "name": {
- "en": {
- "en": "Neptune"
- }
- }
- },
- "rahu": {
- "id": "rahu",
- "symbol": "☊︎",
- "name": {
- "en": {
- "en": "Caput Draconis"
- }
- }
- },
- "ketu": {
- "id": "ketu",
- "symbol": "☋︎",
- "name": {
- "en": {
- "en": "Cauda Draconic"
- }
- }
- }
-}
diff --git a/data/astrology/retrograde.json b/data/astrology/retrograde.json
deleted file mode 100644
index 848b7e6..0000000
--- a/data/astrology/retrograde.json
+++ /dev/null
@@ -1,244 +0,0 @@
-{
- "mercury": [
- [
- [
- 2020,
- 10,
- 13
- ],
- [
- 2020,
- 11,
- 3
- ]
- ],
- [
- [
- 2021,
- 1,
- 30
- ],
- [
- 2021,
- 2,
- 20
- ]
- ],
- [
- [
- 2021,
- 5,
- 29
- ],
- [
- 2021,
- 6,
- 22
- ]
- ],
- [
- [
- 2021,
- 9,
- 27
- ],
- [
- 2021,
- 10,
- 18
- ]
- ],
- [
- [
- 2022,
- 1,
- 14
- ],
- [
- 2022,
- 2,
- 3
- ]
- ],
- [
- [
- 2022,
- 5,
- 10
- ],
- [
- 2022,
- 6,
- 2
- ]
- ],
- [
- [
- 2022,
- 9,
- 9
- ],
- [
- 2022,
- 10,
- 2
- ]
- ],
- [
- [
- 2022,
- 12,
- 29
- ],
- [
- 2023,
- 1,
- 18
- ]
- ],
- [
- [
- 2023,
- 4,
- 21
- ],
- [
- 2023,
- 5,
- 14
- ]
- ],
- [
- [
- 2023,
- 8,
- 23
- ],
- [
- 2023,
- 9,
- 15
- ]
- ],
- [
- [
- 2023,
- 12,
- 13
- ],
- [
- 2024,
- 1,
- 1
- ]
- ],
- [
- [
- 2024,
- 4,
- 1
- ],
- [
- 2024,
- 4,
- 25
- ]
- ],
- [
- [
- 2024,
- 8,
- 4
- ],
- [
- 2024,
- 8,
- 28
- ]
- ],
- [
- [
- 2024,
- 11,
- 25
- ],
- [
- 2024,
- 12,
- 15
- ]
- ],
- [
- [
- 2025,
- 3,
- 14
- ],
- [
- 2025,
- 4,
- 7
- ]
- ],
- [
- [
- 2025,
- 7,
- 17
- ],
- [
- 2025,
- 8,
- 11
- ]
- ],
- [
- [
- 2025,
- 11,
- 9
- ],
- [
- 2025,
- 11,
- 29
- ]
- ],
- [
- [
- 2026,
- 2,
- 25
- ],
- [
- 2026,
- 3,
- 20
- ]
- ],
- [
- [
- 2026,
- 6,
- 29
- ],
- [
- 2026,
- 7,
- 23
- ]
- ],
- [
- [
- 2026,
- 10,
- 24
- ],
- [
- 2026,
- 11,
- 13
- ]
- ]
- ]
-}
diff --git a/data/astrology/zodiac.json b/data/astrology/zodiac.json
deleted file mode 100644
index a0deaef..0000000
--- a/data/astrology/zodiac.json
+++ /dev/null
@@ -1,326 +0,0 @@
-{
- "aries": {
- "id": "aries",
- "no": 1,
- "symbol": "♈︎",
- "emoji": "♈️",
- "name": {
- "en": "Aries"
- },
- "meaning": {
- "en": "Ram"
- },
- "rulesFrom": [
- [
- 3,
- 21
- ],
- [
- 4,
- 19
- ]
- ],
- "planetId": "mars",
- "elementId": "fire",
- "quadruplicity": "cardinal",
- "tribeOfIsraelId": "gad",
- "tetragrammatonPermutation": "yhvH"
- },
- "taurus": {
- "id": "taurus",
- "no": 2,
- "symbol": "♉︎",
- "emoji": "♉",
- "name": {
- "en": "Taurus"
- },
- "meaning": {
- "en": "Bullm"
- },
- "rulesFrom": [
- [
- 4,
- 20
- ],
- [
- 5,
- 20
- ]
- ],
- "planetId": "venus",
- "elementId": "earth",
- "quadruplicity": "kerubic",
- "tribeOfIsraelId": "ephraim",
- "tetragrammatonPermutation": "yhHv"
- },
- "gemini": {
- "id": "gemini",
- "no": 3,
- "symbol": "♊︎",
- "emoji": "♊",
- "name": {
- "en": "Gemini"
- },
- "meaning": {
- "en": "Twins"
- },
- "rulesFrom": [
- [
- 5,
- 21
- ],
- [
- 6,
- 20
- ]
- ],
- "planetId": "mercury",
- "elementId": "air",
- "quadruplicity": "mutable",
- "tribeOfIsraelId": "manasseh",
- "tetragrammatonPermutation": "yvhH"
- },
- "cancer": {
- "id": "cancer",
- "no": 4,
- "symbol": "♋︎",
- "emoji": "♋",
- "name": {
- "en": "Cancer"
- },
- "meaning": {
- "en": "Crab"
- },
- "rulesFrom": [
- [
- 6,
- 21
- ],
- [
- 7,
- 22
- ]
- ],
- "planetId": "sol",
- "elementId": "water",
- "quadruplicity": "cardinal",
- "tribeOfIsraelId": "issachar",
- "tetragrammatonPermutation": "hvyH"
- },
- "leo": {
- "id": "leo",
- "no": 5,
- "symbol": "♌︎",
- "emoji": "♌",
- "name": {
- "en": "Leo"
- },
- "meaning": {
- "en": "Lion"
- },
- "rulesFrom": [
- [
- 7,
- 23
- ],
- [
- 8,
- 22
- ]
- ],
- "planetId": "sol",
- "elementId": "fire",
- "quadruplicity": "kerubic",
- "tribeOfIsraelId": "judah",
- "tetragrammatonPermutation": "hvyH"
- },
- "virgo": {
- "id": "virgo",
- "no": 6,
- "symbol": "♍︎",
- "emoji": "♍",
- "name": {
- "en": "Virgo"
- },
- "meaning": {
- "en": "Virgin"
- },
- "rulesFrom": [
- [
- 8,
- 23
- ],
- [
- 9,
- 22
- ]
- ],
- "planetId": "mercury",
- "elementId": "earth",
- "quadruplicity": "mutable",
- "tribeOfIsraelId": "naphtali",
- "tetragrammatonPermutation": "hHvy"
- },
- "libra": {
- "id": "libra",
- "no": 7,
- "symbol": "♎︎",
- "emoji": "♎",
- "name": {
- "en": "Libra"
- },
- "meaning": {
- "en": "Scales"
- },
- "rulesFrom": [
- [
- 9,
- 23
- ],
- [
- 10,
- 22
- ]
- ],
- "planetId": "venus",
- "elementId": "air",
- "quadruplicity": "cardinal",
- "tribeOfIsraelId": "asher",
- "tetragrammatonPermutation": "vHyh"
- },
- "scorpio": {
- "id": "scorpio",
- "no": 8,
- "symbol": "♏︎",
- "emoji": "♏",
- "name": {
- "en": "Scorpio"
- },
- "meaning": {
- "en": "Scorpion"
- },
- "rulesFrom": [
- [
- 10,
- 23
- ],
- [
- 11,
- 21
- ]
- ],
- "planetId": "jupiter",
- "elementId": "water",
- "quadruplicity": "kerubic",
- "tribeOfIsraelId": "dan",
- "tetragrammatonPermutation": "vHhy"
- },
- "sagittarius": {
- "id": "sagittarius",
- "no": 9,
- "symbol": "♐︎",
- "emoji": "♐",
- "name": {
- "en": "Sagittarius"
- },
- "meaning": {
- "en": "Archer"
- },
- "rulesFrom": [
- [
- 11,
- 22
- ],
- [
- 12,
- 21
- ]
- ],
- "planetId": "jupiter",
- "elementId": "fire",
- "quadruplicity": "mutable",
- "tribeOfIsraelId": "benjamin",
- "tetragrammatonPermutation": "Hyhv"
- },
- "capricorn": {
- "id": "capricorn",
- "no": 10,
- "symbol": "♑︎",
- "emoji": "♑",
- "name": {
- "en": "Capricorn"
- },
- "meaning": {
- "en": "Sea-goat"
- },
- "rulesFrom": [
- [
- 12,
- 22
- ],
- [
- 1,
- 19
- ]
- ],
- "planetId": "saturn",
- "elementId": "earth",
- "quadruplicity": "cardinal",
- "tribeOfIsraelId": "zebulun",
- "tetragrammatonPermutation": "Hyhv"
- },
- "aquarius": {
- "id": "aquarius",
- "no": 11,
- "symbol": "♒︎",
- "emoji": "♒",
- "name": {
- "en": "Aquarius"
- },
- "meaning": {
- "en": "Water-bearer"
- },
- "rulesFrom": [
- [
- 1,
- 20
- ],
- [
- 2,
- 18
- ]
- ],
- "planetId": "saturn",
- "elementId": "air",
- "quadruplicity": "kerubic",
- "tribeOfIsraelId": "reuben",
- "tetragrammatonPermutation": "Hyvh"
- },
- "pisces": {
- "id": "pisces",
- "no": 12,
- "symbol": "♓︎",
- "emoji": "♓",
- "name": {
- "en": "Pisces"
- },
- "meaning": {
- "en": "Fish"
- },
- "rulesFrom": [
- [
- 2,
- 19
- ],
- [
- 3,
- 20
- ]
- ],
- "planetId": "jupiter",
- "elementId": "water",
- "quadruplicity": "mutable",
- "tribeOfIsraelId": "simeon",
- "tetragrammatonPermutation": "Hhyv"
- }
-}
diff --git a/data/astronomy-cycles.json b/data/astronomy-cycles.json
deleted file mode 100644
index c3d4663..0000000
--- a/data/astronomy-cycles.json
+++ /dev/null
@@ -1,228 +0,0 @@
-{
- "meta": {
- "version": 1,
- "notes": "Core astronomical and calendrical cycles used in astronomy, chronology, and long-term sky modeling."
- },
- "cycles": [
- {
- "id": "metonic-cycle",
- "name": "Metonic Cycle",
- "category": "Luni-solar Calendar",
- "period": "19 years",
- "periodDays": 6939.69,
- "description": "19 tropical years are approximately equal to 235 synodic lunar months.",
- "significance": "Foundation for lunisolar calendar reconciliation.",
- "related": ["Callippic Cycle", "Synodic Month"]
- },
- {
- "id": "callippic-cycle",
- "name": "Callippic Cycle",
- "category": "Luni-solar Calendar",
- "period": "76 years",
- "periodDays": 27758.76,
- "description": "Refinement of four Metonic cycles with leap-day correction.",
- "significance": "Improves long-term lunisolar alignment.",
- "related": ["Metonic Cycle"]
- },
- {
- "id": "hipparchic-cycle",
- "name": "Hipparchic Cycle",
- "category": "Luni-solar Calendar",
- "period": "304 years",
- "periodDays": 111035.04,
- "description": "Four Callippic cycles used as a higher-order correction block.",
- "significance": "Historical long-cycle refinement in ancient astronomy.",
- "related": ["Callippic Cycle"]
- },
- {
- "id": "synodic-month",
- "name": "Synodic Month",
- "category": "Lunar",
- "period": "29.53059 days",
- "periodDays": 29.53059,
- "description": "Average interval between identical lunar phases, such as full moon to full moon.",
- "significance": "Primary month unit in lunar and lunisolar systems.",
- "related": ["Metonic Cycle"]
- },
- {
- "id": "draconic-month",
- "name": "Draconic Month",
- "category": "Lunar",
- "period": "27.21222 days",
- "periodDays": 27.21222,
- "description": "Moon's node-to-node period relative to the ecliptic.",
- "significance": "Important for eclipse timing models.",
- "related": ["Saros Cycle", "Eclipse Season"]
- },
- {
- "id": "anomalistic-month",
- "name": "Anomalistic Month",
- "category": "Lunar",
- "period": "27.55455 days",
- "periodDays": 27.55455,
- "description": "Perigee-to-perigee period of the Moon.",
- "significance": "Affects supermoon timing and lunar distance patterns.",
- "related": ["Saros Cycle"]
- },
- {
- "id": "eclipse-season",
- "name": "Eclipse Season",
- "category": "Eclipse",
- "period": "173.31 days",
- "periodDays": 173.31,
- "description": "Interval between windows when the Sun is near a lunar node.",
- "significance": "Predicts clusters of solar/lunar eclipses.",
- "related": ["Draconic Month", "Saros Cycle"]
- },
- {
- "id": "saros-cycle",
- "name": "Saros Cycle",
- "category": "Eclipse",
- "period": "18 years 11 days 8 hours",
- "periodDays": 6585.321,
- "description": "Near-repeat interval for similar eclipses from geometry recurrence.",
- "significance": "Classic eclipse prediction cycle.",
- "related": ["Draconic Month", "Anomalistic Month", "Eclipse Season"]
- },
- {
- "id": "inex-cycle",
- "name": "Inex Cycle",
- "category": "Eclipse",
- "period": "29 years minus about 20 days",
- "periodDays": 10571.95,
- "description": "Longer eclipse recurrence interval connecting different saros families.",
- "significance": "Useful for classifying eclipse series transitions.",
- "related": ["Saros Cycle"]
- },
- {
- "id": "solar-sunspot-cycle",
- "name": "Solar Sunspot Cycle",
- "category": "Solar",
- "period": "~11 years",
- "periodDays": 4017.75,
- "description": "Average magnetic activity cycle of the Sun seen in sunspot counts.",
- "significance": "Drives space weather and auroral activity trends.",
- "related": ["Hale Magnetic Cycle"]
- },
- {
- "id": "hale-magnetic-cycle",
- "name": "Hale Magnetic Cycle",
- "category": "Solar",
- "period": "~22 years",
- "periodDays": 8035.5,
- "description": "Two sunspot cycles required for solar magnetic polarity to return.",
- "significance": "Long-form solar dynamo period.",
- "related": ["Solar Sunspot Cycle"]
- },
- {
- "id": "jupiter-saturn-great-conjunction",
- "name": "Jupiter-Saturn Great Conjunction",
- "category": "Planetary",
- "period": "~19.86 years",
- "periodDays": 7255.0,
- "description": "Mean interval between conjunctions of Jupiter and Saturn.",
- "significance": "Major marker in historical chronology and sky cycles.",
- "related": ["Great Trigon"]
- },
- {
- "id": "great-trigon",
- "name": "Great Trigon",
- "category": "Planetary",
- "period": "~240 years",
- "periodDays": 87658.0,
- "description": "Successive great conjunctions cycle through similar elemental triplicity patterns over centuries.",
- "significance": "Long-cycle structure derived from Jupiter-Saturn conjunction drift.",
- "related": ["Jupiter-Saturn Great Conjunction"]
- },
- {
- "id": "venus-pentagram-cycle",
- "name": "Venus Pentagram Cycle",
- "category": "Planetary",
- "period": "8 years",
- "periodDays": 2921.94,
- "description": "Five synodic Venus cycles align closely with eight Earth years, tracing a pentagram-like pattern.",
- "significance": "Famous resonance in naked-eye planetary astronomy.",
- "related": ["Synodic Venus Cycle"]
- },
- {
- "id": "synodic-venus-cycle",
- "name": "Synodic Venus Cycle",
- "category": "Planetary",
- "period": "583.92 days",
- "periodDays": 583.92,
- "description": "Mean interval between consecutive inferior conjunctions of Venus.",
- "significance": "Basis of Venus visibility phases and cycle work.",
- "related": ["Venus Pentagram Cycle"]
- },
- {
- "id": "halley-comet-cycle",
- "name": "Halley Comet Cycle",
- "category": "Comet",
- "period": "~75-76 years",
- "periodDays": 27759.0,
- "description": "Orbital return interval of 1P/Halley, varying by perturbations.",
- "significance": "Most recognized periodic comet cycle.",
- "related": ["Comet Period Classes"]
- },
- {
- "id": "encke-comet-cycle",
- "name": "Encke Comet Cycle",
- "category": "Comet",
- "period": "~3.30 years",
- "periodDays": 1205.0,
- "description": "Orbital return interval of Comet 2P/Encke.",
- "significance": "Classic short-period comet benchmark.",
- "related": ["Comet Period Classes"]
- },
- {
- "id": "precession-of-equinoxes",
- "name": "Precession of the Equinoxes",
- "category": "Axial",
- "period": "~25,772 years",
- "periodDays": 9413478.0,
- "description": "Slow conical motion of Earth's rotation axis relative to fixed stars.",
- "significance": "Shifts equinox positions through zodiacal constellations over millennia.",
- "related": ["Great Year (Platonic)"]
- },
- {
- "id": "great-year-platonic",
- "name": "Great Year (Platonic)",
- "category": "Axial",
- "period": "~25,772 years",
- "periodDays": 9413478.0,
- "description": "Traditional term for one full precessional cycle of the equinoxes.",
- "significance": "Long-duration epochal framing in astronomy and chronology traditions.",
- "related": ["Precession of the Equinoxes"]
- },
- {
- "id": "milankovitch-obliquity",
- "name": "Milankovitch Obliquity Cycle",
- "category": "Climate-Astronomy",
- "period": "~41,000 years",
- "periodDays": 14975775.0,
- "description": "Variation in Earth's axial tilt angle over tens of millennia.",
- "significance": "Major pacing component in glacial-interglacial climate structure.",
- "related": ["Milankovitch Precession", "Milankovitch Eccentricity"]
- },
- {
- "id": "milankovitch-precession",
- "name": "Milankovitch Precession Cycle",
- "category": "Climate-Astronomy",
- "period": "~19,000 to 23,000 years",
- "periodDays": 7665000.0,
- "description": "Seasonal timing shift from axial precession interacting with orbital geometry.",
- "significance": "Controls seasonal insolation pacing over geologic time.",
- "related": ["Precession of the Equinoxes", "Milankovitch Obliquity"]
- },
- {
- "id": "milankovitch-eccentricity",
- "name": "Milankovitch Eccentricity Cycle",
- "category": "Climate-Astronomy",
- "period": "~100,000 years (plus ~405,000-year mode)",
- "periodDays": 36524250.0,
- "description": "Long-term change in orbital ellipse shape from near-circular to more elliptical.",
- "significance": "Dominant long pacing in Quaternary paleoclimate archives.",
- "related": ["Milankovitch Obliquity", "Milankovitch Precession"]
- }
- ]
-}
diff --git a/data/calendar-holidays.json b/data/calendar-holidays.json
deleted file mode 100644
index ba3d8ad..0000000
--- a/data/calendar-holidays.json
+++ /dev/null
@@ -1,1673 +0,0 @@
-{
- "meta": {
- "version": 1,
- "notes": "Unified holiday repository across Gregorian, Hebrew, Islamic, and Wheel calendars. Convert via selected Gregorian reference year."
- },
- "holidays": [
- {
- "id": "gregorian-lughnasadh-cross-quarter",
- "calendarId": "gregorian",
- "monthId": "august",
- "name": "Lughnasadh Cross-Quarter",
- "dateText": "08-01 to 08-02",
- "day": 1,
- "monthDayStart": "08-01",
- "description": "Harvest threshold between solstice and equinox.",
- "associations": {
- "planetId": "mercury",
- "zodiacSignId": "leo",
- "tarotCard": "The Hermit",
- "godId": "thoth"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "gregorian-december-solstice",
- "calendarId": "gregorian",
- "monthId": "december",
- "name": "December Solstice",
- "dateText": "12-21",
- "day": 21,
- "monthDayStart": "12-21",
- "description": "Shortest day in the northern hemisphere; longest in the southern hemisphere.",
- "associations": {
- "planetId": "sol",
- "zodiacSignId": "capricorn",
- "tarotCard": "The World",
- "godId": "saturn"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-geminids-peak",
- "calendarId": "gregorian",
- "monthId": "december",
- "name": "Geminids Meteor Peak",
- "dateText": "12-14",
- "day": 14,
- "monthDayStart": "12-14",
- "description": "Peak activity of the Geminids meteor shower.",
- "associations": {
- "planetId": "mercury",
- "zodiacSignId": "gemini",
- "tarotCard": "The Lovers",
- "godId": "hermes"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-imbolc-cross-quarter",
- "calendarId": "gregorian",
- "monthId": "february",
- "name": "Imbolc Cross-Quarter",
- "dateText": "02-01 to 02-02",
- "day": 1,
- "monthDayStart": "02-01",
- "description": "Seasonal threshold between winter solstice and spring equinox.",
- "associations": {
- "planetId": "luna",
- "zodiacSignId": "aquarius",
- "tarotCard": "The Star",
- "godId": "hecate"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "gregorian-perihelion",
- "calendarId": "gregorian",
- "monthId": "january",
- "name": "Earth Perihelion",
- "dateText": "01-03",
- "day": 3,
- "monthDayStart": "01-03",
- "description": "Earth reaches its closest orbital point to the Sun.",
- "associations": {
- "planetId": "sol",
- "tarotCard": "The Sun",
- "godId": "ra"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-sirius-rising-window",
- "calendarId": "gregorian",
- "monthId": "july",
- "name": "Sirius Rising Window",
- "dateText": "07-20 to 08-12",
- "day": 20,
- "monthDayStart": "07-20",
- "description": "Heliacal rising period of Sirius in many northern latitudes.",
- "associations": {
- "planetId": "sol",
- "zodiacSignId": "leo",
- "tarotCard": "Strength",
- "godId": "isis"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "gregorian-june-solstice",
- "calendarId": "gregorian",
- "monthId": "june",
- "name": "June Solstice",
- "dateText": "06-21",
- "day": 21,
- "monthDayStart": "06-21",
- "description": "Longest day in the northern hemisphere; shortest in the southern hemisphere.",
- "associations": {
- "planetId": "sol",
- "zodiacSignId": "cancer",
- "tarotCard": "The Sun",
- "godId": "ra"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-march-equinox",
- "calendarId": "gregorian",
- "monthId": "march",
- "name": "March Equinox",
- "dateText": "03-20",
- "day": 20,
- "monthDayStart": "03-20",
- "description": "Equal day and night; marks spring in the north and autumn in the south.",
- "associations": {
- "planetId": "sol",
- "zodiacSignId": "aries",
- "tarotCard": "The Emperor",
- "godId": "maat"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-spring-eclipse-window",
- "calendarId": "gregorian",
- "monthId": "march",
- "name": "Spring Eclipse Window",
- "dateText": "03-15 to 04-15",
- "day": 15,
- "monthDayStart": "03-15",
- "description": "Typical annual window for paired solar/lunar eclipses near nodal alignments.",
- "associations": {
- "planetId": "luna",
- "zodiacSignId": "aries",
- "tarotCard": "The Moon",
- "godId": "thoth"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "gregorian-beltane-cross-quarter",
- "calendarId": "gregorian",
- "monthId": "may",
- "name": "Beltane Cross-Quarter",
- "dateText": "05-01 to 05-02",
- "day": 1,
- "monthDayStart": "05-01",
- "description": "Fertility and fire threshold between equinox and solstice.",
- "associations": {
- "planetId": "venus",
- "zodiacSignId": "taurus",
- "tarotCard": "The Empress",
- "godId": "aphrodite"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "gregorian-leonids-peak",
- "calendarId": "gregorian",
- "monthId": "november",
- "name": "Leonids Meteor Peak",
- "dateText": "11-17",
- "day": 17,
- "monthDayStart": "11-17",
- "description": "Peak of the Leonids meteor shower under dark skies.",
- "associations": {
- "planetId": "jupiter",
- "zodiacSignId": "sagittarius",
- "tarotCard": "Temperance",
- "godId": "zeus"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-samhain-cross-quarter",
- "calendarId": "gregorian",
- "monthId": "october",
- "name": "Samhain Cross-Quarter",
- "dateText": "10-31 to 11-01",
- "day": 31,
- "monthDayStart": "10-31",
- "description": "Threshold of deep autumn and ancestral observance in many traditions.",
- "associations": {
- "planetId": "saturn",
- "zodiacSignId": "scorpio",
- "tarotCard": "Death",
- "godId": "hades"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "gregorian-autumn-eclipse-window",
- "calendarId": "gregorian",
- "monthId": "september",
- "name": "Autumn Eclipse Window",
- "dateText": "09-15 to 10-15",
- "day": 15,
- "monthDayStart": "09-15",
- "description": "Typical annual window for eclipse pairings near opposite nodal season.",
- "associations": {
- "planetId": "luna",
- "zodiacSignId": "libra",
- "tarotCard": "The Moon",
- "godId": "anubis"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "gregorian-september-equinox",
- "calendarId": "gregorian",
- "monthId": "september",
- "name": "September Equinox",
- "dateText": "09-22",
- "day": 22,
- "monthDayStart": "09-22",
- "description": "Equal day and night; marks autumn in the north and spring in the south.",
- "associations": {
- "planetId": "sol",
- "zodiacSignId": "libra",
- "tarotCard": "Justice",
- "godId": "maat"
- },
- "source": "celestial-holidays.holidays[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-new-year-day",
- "calendarId": "gregorian",
- "monthId": "january",
- "name": "New Year's Day",
- "dateText": "01-01",
- "day": 1,
- "monthDayStart": "01-01",
- "description": "First day of the Gregorian civil year.",
- "associations": {},
- "source": "popular-holidays.curated",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-good-friday",
- "calendarId": "gregorian",
- "monthId": "movable",
- "name": "Good Friday",
- "dateText": "Moveable Friday before Easter (March/April)",
- "day": null,
- "dateRule": "gregorian-good-friday",
- "description": "Christian observance commemorating the crucifixion of Jesus.",
- "associations": {},
- "source": "popular-holidays.curated",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-easter-sunday",
- "calendarId": "gregorian",
- "monthId": "movable",
- "name": "Easter Sunday",
- "dateText": "Moveable Sunday (March/April)",
- "day": null,
- "dateRule": "gregorian-easter-sunday",
- "description": "Christian feast celebrating the resurrection of Jesus.",
- "associations": {},
- "source": "popular-holidays.curated",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-halloween",
- "calendarId": "gregorian",
- "monthId": "october",
- "name": "Halloween",
- "dateText": "10-31",
- "day": 31,
- "monthDayStart": "10-31",
- "description": "Popular autumn festival observed on October 31.",
- "associations": {},
- "source": "popular-holidays.curated",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-thanksgiving-us",
- "calendarId": "gregorian",
- "monthId": "movable",
- "name": "Thanksgiving (US)",
- "dateText": "4th Thursday of November",
- "day": null,
- "dateRule": "gregorian-thanksgiving-us",
- "description": "US harvest holiday observed on the fourth Thursday in November.",
- "associations": {},
- "source": "popular-holidays.curated",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-christmas-eve",
- "calendarId": "gregorian",
- "monthId": "december",
- "name": "Christmas Eve",
- "dateText": "12-24",
- "day": 24,
- "monthDayStart": "12-24",
- "description": "Evening before Christmas Day, widely observed globally.",
- "associations": {},
- "source": "popular-holidays.curated",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-christmas-day",
- "calendarId": "gregorian",
- "monthId": "december",
- "name": "Christmas Day",
- "dateText": "12-25",
- "day": 25,
- "monthDayStart": "12-25",
- "description": "Widely observed Christian and cultural holiday on December 25.",
- "associations": {},
- "source": "popular-holidays.curated",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-boxing-day",
- "calendarId": "gregorian",
- "monthId": "december",
- "name": "Boxing Day",
- "dateText": "12-26",
- "day": 26,
- "monthDayStart": "12-26",
- "description": "Public holiday observed in many countries on December 26.",
- "associations": {},
- "source": "popular-holidays.curated",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "gregorian-new-years-eve",
- "calendarId": "gregorian",
- "monthId": "december",
- "name": "New Year's Eve",
- "dateText": "12-31",
- "day": 31,
- "monthDayStart": "12-31",
- "description": "Last day of the Gregorian civil year.",
- "associations": {},
- "source": "popular-holidays.curated",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-adar-ii-2-purim",
- "calendarId": "hebrew",
- "monthId": "adar-ii",
- "name": "Purim",
- "dateText": "14 Adar II",
- "day": 14,
- "description": "Purim celebrations in leap years.",
- "associations": {
- "zodiacSignId": "pisces",
- "hebrewLetterId": "qof"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-adar-ii-1-ta-anit-esther",
- "calendarId": "hebrew",
- "monthId": "adar-ii",
- "name": "Ta'anit Esther",
- "dateText": "13 Adar II",
- "day": 13,
- "description": "Fast of Esther.",
- "associations": {
- "zodiacSignId": "pisces",
- "hebrewLetterId": "qof"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-adar-2-purim",
- "calendarId": "hebrew",
- "monthId": "adar",
- "name": "Purim",
- "dateText": "14 Adar",
- "day": 14,
- "description": "Joyful holiday celebrating the salvation of the Jews in Persia; megillah reading, costumes, gifts.",
- "associations": {
- "zodiacSignId": "pisces",
- "hebrewLetterId": "qof"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-adar-3-shushan-purim",
- "calendarId": "hebrew",
- "monthId": "adar",
- "name": "Shushan Purim",
- "dateText": "15 Adar",
- "day": 15,
- "description": "Purim as celebrated in walled cities.",
- "associations": {
- "zodiacSignId": "pisces",
- "hebrewLetterId": "qof"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-adar-1-ta-anit-esther",
- "calendarId": "hebrew",
- "monthId": "adar",
- "name": "Ta'anit Esther",
- "dateText": "13 Adar",
- "day": 13,
- "description": "Fast of Esther, the day before Purim.",
- "associations": {
- "zodiacSignId": "pisces",
- "hebrewLetterId": "qof"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-av-1-tisha-b-av",
- "calendarId": "hebrew",
- "monthId": "av",
- "name": "Tisha B'Av",
- "dateText": "9 Av",
- "day": 9,
- "description": "Saddest day on the Jewish calendar; mourns destruction of both Temples and other calamities.",
- "associations": {
- "zodiacSignId": "leo",
- "hebrewLetterId": "tet"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-av-2-tu-b-av",
- "calendarId": "hebrew",
- "monthId": "av",
- "name": "Tu B'Av",
- "dateText": "15 Av",
- "day": 15,
- "description": "Minor holiday; traditionally a day for finding one's soulmate.",
- "associations": {
- "zodiacSignId": "leo",
- "hebrewLetterId": "tet"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-elul-2-daily-shofar-blowing",
- "calendarId": "hebrew",
- "monthId": "elul",
- "name": "Daily Shofar blowing",
- "dateText": "1–29 Elul",
- "day": 1,
- "description": "Shofar sounded every morning to call to repentance.",
- "associations": {
- "zodiacSignId": "virgo",
- "hebrewLetterId": "yod"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "hebrew-elul-1-selichot-penitential-prayers",
- "calendarId": "hebrew",
- "monthId": "elul",
- "name": "Selichot (penitential prayers)",
- "dateText": "Throughout Elul",
- "day": null,
- "description": "Prayers of forgiveness recited in preparation for Rosh Hashanah.",
- "associations": {
- "zodiacSignId": "virgo",
- "hebrewLetterId": "yod"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "hebrew-iyar-3-lag-baomer",
- "calendarId": "hebrew",
- "monthId": "iyar",
- "name": "Lag BaOmer",
- "dateText": "18 Iyar",
- "day": 18,
- "description": "33rd day of the Omer count; bonfire celebrations.",
- "associations": {
- "zodiacSignId": "taurus",
- "hebrewLetterId": "vav"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-iyar-2-yom-ha-atzmaut",
- "calendarId": "hebrew",
- "monthId": "iyar",
- "name": "Yom Ha'atzmaut",
- "dateText": "5 Iyar",
- "day": 5,
- "description": "Israeli Independence Day.",
- "associations": {
- "zodiacSignId": "taurus",
- "hebrewLetterId": "vav"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-iyar-1-yom-hashoah",
- "calendarId": "hebrew",
- "monthId": "iyar",
- "name": "Yom HaShoah",
- "dateText": "27 Nisan / early Iyar",
- "day": 27,
- "description": "Holocaust Remembrance Day.",
- "associations": {
- "zodiacSignId": "taurus",
- "hebrewLetterId": "vav"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "hebrew-kislev-1-hanukkah-begins",
- "calendarId": "hebrew",
- "monthId": "kislev",
- "name": "Hanukkah begins",
- "dateText": "25 Kislev",
- "day": 25,
- "description": "Eight-day festival of lights commemorating rededication of the Temple; lighting the Hanukkiah.",
- "associations": {
- "zodiacSignId": "sagittarius",
- "hebrewLetterId": "samekh"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-nisan-2-counting-of-the-omer-begins",
- "calendarId": "hebrew",
- "monthId": "nisan",
- "name": "Counting of the Omer begins",
- "dateText": "16 Nisan",
- "day": 16,
- "description": "49-day count linking Passover to Shavuot.",
- "associations": {
- "zodiacSignId": "aries",
- "hebrewLetterId": "he"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-nisan-3-last-day-of-passover",
- "calendarId": "hebrew",
- "monthId": "nisan",
- "name": "Last day of Passover",
- "dateText": "22 Nisan",
- "day": 22,
- "description": "Concludes the Passover festival.",
- "associations": {
- "zodiacSignId": "aries",
- "hebrewLetterId": "he"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-nisan-1-passover-pesach-seder",
- "calendarId": "hebrew",
- "monthId": "nisan",
- "name": "Passover (Pesach) — Seder",
- "dateText": "15 Nisan",
- "day": 15,
- "description": "Eight-day festival commemorating the Exodus from Egypt.",
- "associations": {
- "zodiacSignId": "aries",
- "hebrewLetterId": "he"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-shvat-1-tu-b-shvat",
- "calendarId": "hebrew",
- "monthId": "shvat",
- "name": "Tu B'Shvat",
- "dateText": "15 Shvat",
- "day": 15,
- "description": "New Year of the Trees; fruit trees wake; associated with Kabbalistic 'Seder of the Four Worlds.'",
- "associations": {
- "zodiacSignId": "aquarius",
- "hebrewLetterId": "tsadi"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-sivan-1-shavuot",
- "calendarId": "hebrew",
- "monthId": "sivan",
- "name": "Shavuot",
- "dateText": "6 Sivan",
- "day": 6,
- "description": "Feast of Weeks; celebrates the giving of the Torah and the first fruits harvest.",
- "associations": {
- "zodiacSignId": "gemini",
- "hebrewLetterId": "zayin"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-tammuz-1-17th-of-tammuz",
- "calendarId": "hebrew",
- "monthId": "tammuz",
- "name": "17th of Tammuz",
- "dateText": "17 Tammuz",
- "day": 17,
- "description": "Fast day commemorating the breaching of Jerusalem's walls. Begins the Three Weeks of mourning.",
- "associations": {
- "zodiacSignId": "cancer",
- "hebrewLetterId": "het"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-tevet-2-10th-of-tevet",
- "calendarId": "hebrew",
- "monthId": "tevet",
- "name": "10th of Tevet",
- "dateText": "10 Tevet",
- "day": 10,
- "description": "Fast day marking the Babylonian siege of Jerusalem.",
- "associations": {
- "zodiacSignId": "capricorn",
- "hebrewLetterId": "ayin"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "hebrew-tevet-1-hanukkah-concludes",
- "calendarId": "hebrew",
- "monthId": "tevet",
- "name": "Hanukkah concludes",
- "dateText": "2–3 Tevet",
- "day": 2,
- "description": "Final days of the Festival of Lights.",
- "associations": {
- "zodiacSignId": "capricorn",
- "hebrewLetterId": "ayin"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "hebrew-tishrei-1-rosh-hashanah",
- "calendarId": "hebrew",
- "monthId": "tishrei",
- "name": "Rosh Hashanah",
- "dateText": "1–2 Tishrei",
- "day": 1,
- "description": "Jewish New Year; beginning of the Ten Days of Repentance.",
- "associations": {
- "zodiacSignId": "libra",
- "hebrewLetterId": "lamed"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "hebrew-tishrei-4-shemini-atzeret-simchat-torah",
- "calendarId": "hebrew",
- "monthId": "tishrei",
- "name": "Shemini Atzeret / Simchat Torah",
- "dateText": "22–23 Tishrei",
- "day": 22,
- "description": "Conclusion of Sukkot; celebrates completing the annual Torah reading cycle.",
- "associations": {
- "zodiacSignId": "libra",
- "hebrewLetterId": "lamed"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "hebrew-tishrei-3-sukkot",
- "calendarId": "hebrew",
- "monthId": "tishrei",
- "name": "Sukkot",
- "dateText": "15–21 Tishrei",
- "day": 15,
- "description": "Feast of Tabernacles; seven-day harvest festival in temporary booths.",
- "associations": {
- "zodiacSignId": "libra",
- "hebrewLetterId": "lamed"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "hebrew-tishrei-2-yom-kippur",
- "calendarId": "hebrew",
- "monthId": "tishrei",
- "name": "Yom Kippur",
- "dateText": "10 Tishrei",
- "day": 10,
- "description": "Day of Atonement; holiest day of the year. Full-day fast.",
- "associations": {
- "zodiacSignId": "libra",
- "hebrewLetterId": "lamed"
- },
- "source": "hebrew-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "islamic-dhu-al-hijja-1-day-of-arafah",
- "calendarId": "islamic",
- "monthId": "dhu-al-hijja",
- "name": "Day of Arafah",
- "dateText": "9 Dhu al-Hijja",
- "day": 9,
- "description": "Most important day of Hajj; pilgrims stand in prayer at the plain of Arafah. Voluntary fasting recommended for non-pilgrims.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "islamic-dhu-al-hijja-3-days-of-tashriq",
- "calendarId": "islamic",
- "monthId": "dhu-al-hijja",
- "name": "Days of Tashriq",
- "dateText": "11–13 Dhu al-Hijja",
- "day": 11,
- "description": "Final days of the Hajj rites; pilgrims complete the Stoning of the Devil ritual.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "islamic-dhu-al-hijja-2-eid-al-adha",
- "calendarId": "islamic",
- "monthId": "dhu-al-hijja",
- "name": "Eid al-Adha",
- "dateText": "10 Dhu al-Hijja",
- "day": 10,
- "description": "Festival of Sacrifice commemorating Ibrahim's willingness to sacrifice his son. Animal sacrifice and sharing of meat with the poor.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "islamic-dhu-al-qada-1-pilgrims-travel-to-mecca",
- "calendarId": "islamic",
- "monthId": "dhu-al-qada",
- "name": "Pilgrims travel to Mecca",
- "dateText": "Throughout Dhu al-Qada",
- "day": null,
- "description": "Preparation month for the Hajj pilgrimage in Dhu al-Hijja.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "islamic-muharram-2-ashura",
- "calendarId": "islamic",
- "monthId": "muharram",
- "name": "Ashura",
- "dateText": "10 Muharram",
- "day": 10,
- "description": "For Sunni Muslims: Moses' fast of gratitude; recommended fast. For Shia Muslims: day of mourning for the martyrdom of Husayn ibn Ali at Karbala.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "islamic-muharram-1-islamic-new-year-ras-as-sana",
- "calendarId": "islamic",
- "monthId": "muharram",
- "name": "Islamic New Year (Ras as-Sana)",
- "dateText": "1 Muharram",
- "day": 1,
- "description": "Beginning of the Hijri new year.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "islamic-rabi-al-awwal-1-mawlid-al-nabi",
- "calendarId": "islamic",
- "monthId": "rabi-al-awwal",
- "name": "Mawlid al-Nabi",
- "dateText": "12 Rabi' al-Awwal",
- "day": 12,
- "description": "Celebration of the birth of the Prophet Muhammad. Widely observed with prayers, gatherings, and processions.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "islamic-rajab-1-laylat-al-mi-raj-isra-wal-mi-raj",
- "calendarId": "islamic",
- "monthId": "rajab",
- "name": "Laylat al-Mi'raj (Isra wal Mi'raj)",
- "dateText": "27 Rajab",
- "day": 27,
- "description": "Commemorates the Prophet Muhammad's miraculous night journey to Jerusalem and ascension to the heavens.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "islamic-ramadan-3-eid-al-fitr",
- "calendarId": "islamic",
- "monthId": "ramadan",
- "name": "Eid al-Fitr",
- "dateText": "1 Shawwal (end of Ramadan)",
- "day": 1,
- "description": "Festival of Breaking the Fast; begins at the sighting of the new moon after Ramadan.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "islamic-ramadan-2-laylat-al-qadr-night-of-power",
- "calendarId": "islamic",
- "monthId": "ramadan",
- "name": "Laylat al-Qadr (Night of Power)",
- "dateText": "One of the last 10 odd nights",
- "day": 10,
- "description": "Night on which the Quran was first revealed; considered the most blessed night of the year.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "islamic-ramadan-1-ramadan-fast-begins",
- "calendarId": "islamic",
- "monthId": "ramadan",
- "name": "Ramadan Fast begins",
- "dateText": "1 Ramadan",
- "day": 1,
- "description": "Month-long obligatory fast from dawn to sunset; intensified prayer, Quran recitation, charity.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "islamic-shaban-1-laylat-al-bara-at-night-of-records",
- "calendarId": "islamic",
- "monthId": "shaban",
- "name": "Laylat al-Bara'at (Night of Records)",
- "dateText": "15 Sha'ban",
- "day": 15,
- "description": "Night believed to be when God decrees the fate of each person for the coming year; many observe voluntary fasting and prayer.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "islamic-shawwal-1-eid-al-fitr",
- "calendarId": "islamic",
- "monthId": "shawwal",
- "name": "Eid al-Fitr",
- "dateText": "1 Shawwal",
- "day": 1,
- "description": "Three-day celebration ending Ramadan; prayers, feasting, gifts, and charity.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "islamic-shawwal-2-six-days-of-shawwal-optional-fast",
- "calendarId": "islamic",
- "monthId": "shawwal",
- "name": "Six Days of Shawwal (optional fast)",
- "dateText": "2–7 Shawwal",
- "day": 2,
- "description": "Recommended voluntary fast of six days which completes a full year of fasting in reward.",
- "associations": {},
- "source": "islamic-calendar.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "wheel-beltane-1-beltane-bonfire",
- "calendarId": "wheel-of-year",
- "monthId": "beltane",
- "name": "Beltane Bonfire",
- "dateText": "May 1",
- "day": 1,
- "monthDayStart": "05-01",
- "description": "Leap over or dance around a bonfire for purification and vitality.",
- "associations": {
- "direction": "Southeast",
- "themes": [
- "fertility",
- "passion",
- "union",
- "abundance",
- "sexuality",
- "vitality"
- ],
- "deities": [
- "The Green Man",
- "Flora",
- "Cernunnos",
- "Aphrodite",
- "Beltane Fire"
- ],
- "colors": [
- "red",
- "white",
- "green",
- "gold"
- ],
- "herbs": [
- "hawthorn",
- "rose",
- "rowan",
- "meadowsweet",
- "woodruff"
- ],
- "element": "Fire"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "wheel-beltane-2-maypole-dance",
- "calendarId": "wheel-of-year",
- "monthId": "beltane",
- "name": "Maypole dance",
- "dateText": "May 1",
- "day": 1,
- "monthDayStart": "05-01",
- "description": "Weaving ribbons around a May pole; ceremony of union and fertility.",
- "associations": {
- "direction": "Southeast",
- "themes": [
- "fertility",
- "passion",
- "union",
- "abundance",
- "sexuality",
- "vitality"
- ],
- "deities": [
- "The Green Man",
- "Flora",
- "Cernunnos",
- "Aphrodite",
- "Beltane Fire"
- ],
- "colors": [
- "red",
- "white",
- "green",
- "gold"
- ],
- "herbs": [
- "hawthorn",
- "rose",
- "rowan",
- "meadowsweet",
- "woodruff"
- ],
- "element": "Fire"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "wheel-imbolc-1-brigid-s-cross",
- "calendarId": "wheel-of-year",
- "monthId": "imbolc",
- "name": "Brigid's Cross",
- "dateText": "February 1–2",
- "day": 1,
- "monthDayStart": "02-01",
- "description": "Weave a Brigid's Cross from rushes to invite protection and blessing for the year.",
- "associations": {
- "direction": "Northeast",
- "themes": [
- "new beginnings",
- "purification",
- "inspiration",
- "hearth",
- "healing"
- ],
- "deities": [
- "Brigid / Bride",
- "St. Brigid",
- "The Maiden"
- ],
- "colors": [
- "white",
- "silver",
- "pale yellow",
- "pink"
- ],
- "herbs": [
- "snowdrop",
- "rosemary",
- "angelica",
- "basil"
- ],
- "element": "Fire / Earth"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "wheel-imbolc-2-candle-dedication",
- "calendarId": "wheel-of-year",
- "monthId": "imbolc",
- "name": "Candle dedication",
- "dateText": "February 1–2",
- "day": 1,
- "monthDayStart": "02-01",
- "description": "Light and bless candles for the coming season's work.",
- "associations": {
- "direction": "Northeast",
- "themes": [
- "new beginnings",
- "purification",
- "inspiration",
- "hearth",
- "healing"
- ],
- "deities": [
- "Brigid / Bride",
- "St. Brigid",
- "The Maiden"
- ],
- "colors": [
- "white",
- "silver",
- "pale yellow",
- "pink"
- ],
- "herbs": [
- "snowdrop",
- "rosemary",
- "angelica",
- "basil"
- ],
- "element": "Fire / Earth"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "wheel-litha-2-bonfire-leaping",
- "calendarId": "wheel-of-year",
- "monthId": "litha",
- "name": "Bonfire leaping",
- "dateText": "~June 21",
- "day": 21,
- "monthDayStart": "06-21",
- "description": "Solstice fires ward off evil and bless crops and animals.",
- "associations": {
- "direction": "South",
- "themes": [
- "peak power",
- "fullness",
- "solar magic",
- "fae",
- "courage",
- "strength"
- ],
- "deities": [
- "Sol / Sun God",
- "Lugh (early)",
- "Ra",
- "Apollo"
- ],
- "colors": [
- "gold",
- "yellow",
- "orange",
- "blue"
- ],
- "herbs": [
- "St. John's Wort",
- "lavender",
- "chamomile",
- "elderflower",
- "fern seed"
- ],
- "element": "Fire"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "wheel-litha-1-midsummer-vigil",
- "calendarId": "wheel-of-year",
- "monthId": "litha",
- "name": "Midsummer vigil",
- "dateText": "~June 21",
- "day": 21,
- "monthDayStart": "06-21",
- "description": "Watch the sunrise on the solstice; gather herbs at dawn for maximum potency.",
- "associations": {
- "direction": "South",
- "themes": [
- "peak power",
- "fullness",
- "solar magic",
- "fae",
- "courage",
- "strength"
- ],
- "deities": [
- "Sol / Sun God",
- "Lugh (early)",
- "Ra",
- "Apollo"
- ],
- "colors": [
- "gold",
- "yellow",
- "orange",
- "blue"
- ],
- "herbs": [
- "St. John's Wort",
- "lavender",
- "chamomile",
- "elderflower",
- "fern seed"
- ],
- "element": "Fire"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "wheel-lughnasadh-1-first-loaf-ritual",
- "calendarId": "wheel-of-year",
- "monthId": "lughnasadh",
- "name": "First loaf ritual",
- "dateText": "August 1",
- "day": 1,
- "monthDayStart": "08-01",
- "description": "Bake bread from the harvest grain; offer a portion back to the earth.",
- "associations": {
- "direction": "West / Southwest",
- "themes": [
- "first harvest",
- "grain",
- "sacrifice",
- "abundance",
- "skill",
- "games"
- ],
- "deities": [
- "Lugh",
- "The Corn King",
- "John Barleycorn",
- "Demeter"
- ],
- "colors": [
- "gold",
- "orange",
- "brown",
- "yellow"
- ],
- "herbs": [
- "wheat",
- "sunflower",
- "corn",
- "calendula",
- "nasturtium"
- ],
- "element": "Earth / Fire"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "wheel-lughnasadh-2-funeral-games",
- "calendarId": "wheel-of-year",
- "monthId": "lughnasadh",
- "name": "Funeral games",
- "dateText": "August 1",
- "day": 1,
- "monthDayStart": "08-01",
- "description": "Physical contests and games honoring Tailtiu (Teltown Games tradition).",
- "associations": {
- "direction": "West / Southwest",
- "themes": [
- "first harvest",
- "grain",
- "sacrifice",
- "abundance",
- "skill",
- "games"
- ],
- "deities": [
- "Lugh",
- "The Corn King",
- "John Barleycorn",
- "Demeter"
- ],
- "colors": [
- "gold",
- "orange",
- "brown",
- "yellow"
- ],
- "herbs": [
- "wheat",
- "sunflower",
- "corn",
- "calendula",
- "nasturtium"
- ],
- "element": "Earth / Fire"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "exact",
- "conversionConfidence": "exact"
- },
- {
- "id": "wheel-mabon-2-balance-meditation",
- "calendarId": "wheel-of-year",
- "monthId": "mabon",
- "name": "Balance meditation",
- "dateText": "~September 22–23",
- "day": 22,
- "monthDayStart": "09-22",
- "description": "Reflect on what you are releasing as you move into the dark half of the year.",
- "associations": {
- "direction": "West",
- "themes": [
- "harvest",
- "balance",
- "gratitude",
- "preparation for darkness",
- "completion"
- ],
- "deities": [
- "Mabon ap Modron",
- "Persephone descending",
- "The Morrigan",
- "Dionysus"
- ],
- "colors": [
- "deep red",
- "brown",
- "russet",
- "purple",
- "gold"
- ],
- "herbs": [
- "ivy",
- "oak",
- "blackberry",
- "rosehip",
- "sage"
- ],
- "element": "Earth / Water"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "wheel-mabon-1-second-harvest-feast",
- "calendarId": "wheel-of-year",
- "monthId": "mabon",
- "name": "Second Harvest feast",
- "dateText": "~September 22–23",
- "day": 22,
- "monthDayStart": "09-22",
- "description": "Give thanks and share the abundance of the harvest.",
- "associations": {
- "direction": "West",
- "themes": [
- "harvest",
- "balance",
- "gratitude",
- "preparation for darkness",
- "completion"
- ],
- "deities": [
- "Mabon ap Modron",
- "Persephone descending",
- "The Morrigan",
- "Dionysus"
- ],
- "colors": [
- "deep red",
- "brown",
- "russet",
- "purple",
- "gold"
- ],
- "herbs": [
- "ivy",
- "oak",
- "blackberry",
- "rosehip",
- "sage"
- ],
- "element": "Earth / Water"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "wheel-ostara-2-balance-ritual",
- "calendarId": "wheel-of-year",
- "monthId": "ostara",
- "name": "Balance ritual",
- "dateText": "~March 20–21",
- "day": 20,
- "monthDayStart": "03-20",
- "description": "Meditate on and balance opposing forces in your life at the equinox point.",
- "associations": {
- "direction": "East",
- "themes": [
- "balance",
- "rebirth",
- "fertility",
- "dawn",
- "new beginnings"
- ],
- "deities": [
- "Ēostre",
- "Persephone",
- "The Maiden",
- "Green Man"
- ],
- "colors": [
- "pale green",
- "yellow",
- "lilac",
- "pastel"
- ],
- "herbs": [
- "violet",
- "jasmine",
- "daffodil",
- "lavender"
- ],
- "element": "Air"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "wheel-ostara-1-seed-blessing",
- "calendarId": "wheel-of-year",
- "monthId": "ostara",
- "name": "Seed blessing",
- "dateText": "~March 20–21",
- "day": 20,
- "monthDayStart": "03-20",
- "description": "Bless seeds or intentions for what you wish to grow this season.",
- "associations": {
- "direction": "East",
- "themes": [
- "balance",
- "rebirth",
- "fertility",
- "dawn",
- "new beginnings"
- ],
- "deities": [
- "Ēostre",
- "Persephone",
- "The Maiden",
- "Green Man"
- ],
- "colors": [
- "pale green",
- "yellow",
- "lilac",
- "pastel"
- ],
- "herbs": [
- "violet",
- "jasmine",
- "daffodil",
- "lavender"
- ],
- "element": "Air"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "wheel-samhain-1-ancestor-altar",
- "calendarId": "wheel-of-year",
- "monthId": "samhain",
- "name": "Ancestor Altar",
- "dateText": "October 31 / November 1",
- "day": 31,
- "monthDayStart": "10-31",
- "description": "Set a dumb supper or ancestor altar to honor the beloved dead.",
- "associations": {
- "direction": "North / Northwest",
- "themes": [
- "death and rebirth",
- "ancestors",
- "the veil",
- "divination",
- "endings"
- ],
- "deities": [
- "The Crone",
- "Hecate",
- "The Morrigan",
- "Hades",
- "Osiris"
- ],
- "colors": [
- "black",
- "orange",
- "deep red",
- "purple"
- ],
- "herbs": [
- "mugwort",
- "wormwood",
- "dittany of Crete",
- "nightshade"
- ],
- "element": "Earth"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "wheel-samhain-2-divination-work",
- "calendarId": "wheel-of-year",
- "monthId": "samhain",
- "name": "Divination Work",
- "dateText": "October 31 / November 1",
- "day": 31,
- "monthDayStart": "10-31",
- "description": "Thin veil makes scrying, tarot, and astral work potent tonight.",
- "associations": {
- "direction": "North / Northwest",
- "themes": [
- "death and rebirth",
- "ancestors",
- "the veil",
- "divination",
- "endings"
- ],
- "deities": [
- "The Crone",
- "Hecate",
- "The Morrigan",
- "Hades",
- "Osiris"
- ],
- "colors": [
- "black",
- "orange",
- "deep red",
- "purple"
- ],
- "herbs": [
- "mugwort",
- "wormwood",
- "dittany of Crete",
- "nightshade"
- ],
- "element": "Earth"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "wheel-yule-2-sun-vigil",
- "calendarId": "wheel-of-year",
- "monthId": "yule",
- "name": "Sun Vigil",
- "dateText": "~December 21",
- "day": 21,
- "monthDayStart": "12-21",
- "description": "Stay up through the night or rise at dawn to greet the reborn sun.",
- "associations": {
- "direction": "North",
- "themes": [
- "rebirth of the sun",
- "hope",
- "inner light",
- "return of warmth",
- "solstice"
- ],
- "deities": [
- "The Oak King",
- "Sol Invictus",
- "Mithras",
- "Odin / Father Christmas"
- ],
- "colors": [
- "red",
- "green",
- "gold",
- "white"
- ],
- "herbs": [
- "holly",
- "ivy",
- "mistletoe",
- "pine",
- "frankincense"
- ],
- "element": "Earth"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- },
- {
- "id": "wheel-yule-1-yule-log-burning",
- "calendarId": "wheel-of-year",
- "monthId": "yule",
- "name": "Yule Log burning",
- "dateText": "~December 21",
- "day": 21,
- "monthDayStart": "12-21",
- "description": "Oak log burned through the night to welcome the sun's return.",
- "associations": {
- "direction": "North",
- "themes": [
- "rebirth of the sun",
- "hope",
- "inner light",
- "return of warmth",
- "solstice"
- ],
- "deities": [
- "The Oak King",
- "Sol Invictus",
- "Mithras",
- "Odin / Father Christmas"
- ],
- "colors": [
- "red",
- "green",
- "gold",
- "white"
- ],
- "herbs": [
- "holly",
- "ivy",
- "mistletoe",
- "pine",
- "frankincense"
- ],
- "element": "Earth"
- },
- "source": "wheel-of-year.months[].observances[]",
- "datePrecision": "approximate",
- "conversionConfidence": "approximate"
- }
- ]
-}
diff --git a/data/calendar-months.json b/data/calendar-months.json
deleted file mode 100644
index 241b5dc..0000000
--- a/data/calendar-months.json
+++ /dev/null
@@ -1,379 +0,0 @@
-{
- "meta": {
- "version": 1,
- "notes": "Month-level correspondences and observances for the Calendar section.",
- "links": "holidayIds map to entries in celestial-holidays.json"
- },
- "months": [
- {
- "id": "january",
- "order": 1,
- "name": "January",
- "start": "01-01",
- "end": "01-31",
- "seasonNorth": "Winter",
- "seasonSouth": "Summer",
- "coreTheme": "Beginnings, thresholds, planning",
- "associations": {
- "planetId": "saturn",
- "zodiacSignId": "capricorn",
- "tarotCard": "The Devil",
- "godId": "janus"
- },
- "events": [
- {
- "id": "january-threshold-rite",
- "name": "Threshold Rite",
- "date": "01-01",
- "description": "Set year intentions and define a boundary/structure for one major goal.",
- "associations": {
- "godId": "janus",
- "planetId": "saturn",
- "tarotCard": "The Fool"
- }
- }
- ],
- "holidayIds": ["perihelion"]
- },
- {
- "id": "february",
- "order": 2,
- "name": "February",
- "start": "02-01",
- "end": "02-28",
- "seasonNorth": "Winter",
- "seasonSouth": "Summer",
- "coreTheme": "Purification, preparation, hidden momentum",
- "associations": {
- "planetId": "saturn",
- "zodiacSignId": "aquarius",
- "tarotCard": "The Star",
- "godId": "uranus"
- },
- "events": [
- {
- "id": "february-clearing-work",
- "name": "Cleansing & Clearing",
- "date": "02-11",
- "description": "Remove one recurring distraction and reset practical systems.",
- "associations": {
- "planetId": "saturn",
- "tarotCard": "The Star",
- "godId": "maat"
- }
- }
- ],
- "holidayIds": ["imbolc-cross-quarter"]
- },
- {
- "id": "march",
- "order": 3,
- "name": "March",
- "start": "03-01",
- "end": "03-31",
- "seasonNorth": "Spring",
- "seasonSouth": "Autumn",
- "coreTheme": "Initiation, momentum, first fire",
- "associations": {
- "planetId": "mars",
- "zodiacSignId": "aries",
- "tarotCard": "The Emperor",
- "godId": "ares"
- },
- "events": [
- {
- "id": "march-action-cycle",
- "name": "Action Cycle Start",
- "date": "03-21",
- "description": "Launch a focused 30-day push with daily effort tracking.",
- "associations": {
- "planetId": "mars",
- "zodiacSignId": "aries",
- "tarotCard": "The Emperor",
- "godId": "ares"
- }
- }
- ],
- "holidayIds": ["march-equinox", "spring-eclipse-window"]
- },
- {
- "id": "april",
- "order": 4,
- "name": "April",
- "start": "04-01",
- "end": "04-30",
- "seasonNorth": "Spring",
- "seasonSouth": "Autumn",
- "coreTheme": "Grounding growth, material cultivation",
- "associations": {
- "planetId": "venus",
- "zodiacSignId": "taurus",
- "tarotCard": "The Hierophant",
- "godId": "aphrodite"
- },
- "events": [
- {
- "id": "april-earth-offering",
- "name": "Earth Offering",
- "date": "04-18",
- "description": "Dedicate one practical act to long-term stability and abundance.",
- "associations": {
- "planetId": "venus",
- "zodiacSignId": "taurus",
- "tarotCard": "The Hierophant",
- "godId": "demeter"
- }
- }
- ],
- "holidayIds": ["spring-eclipse-window"]
- },
- {
- "id": "may",
- "order": 5,
- "name": "May",
- "start": "05-01",
- "end": "05-31",
- "seasonNorth": "Spring",
- "seasonSouth": "Autumn",
- "coreTheme": "Connection, exchange, and curiosity",
- "associations": {
- "planetId": "mercury",
- "zodiacSignId": "gemini",
- "tarotCard": "The Lovers",
- "godId": "hermes"
- },
- "events": [
- {
- "id": "may-message-working",
- "name": "Message Working",
- "date": "05-14",
- "description": "Refine communication in one key relationship or collaboration.",
- "associations": {
- "planetId": "mercury",
- "zodiacSignId": "gemini",
- "tarotCard": "The Lovers",
- "godId": "hermes"
- }
- }
- ],
- "holidayIds": ["beltane-cross-quarter"]
- },
- {
- "id": "june",
- "order": 6,
- "name": "June",
- "start": "06-01",
- "end": "06-30",
- "seasonNorth": "Summer",
- "seasonSouth": "Winter",
- "coreTheme": "Nourishment, protection, emotional coherence",
- "associations": {
- "planetId": "luna",
- "zodiacSignId": "cancer",
- "tarotCard": "The Chariot",
- "godId": "artemis"
- },
- "events": [
- {
- "id": "june-hearth-vow",
- "name": "Hearth Vow",
- "date": "06-20",
- "description": "Commit to one practice that protects your inner and outer home.",
- "associations": {
- "planetId": "luna",
- "zodiacSignId": "cancer",
- "tarotCard": "The Chariot",
- "godId": "isis"
- }
- }
- ],
- "holidayIds": ["june-solstice"]
- },
- {
- "id": "july",
- "order": 7,
- "name": "July",
- "start": "07-01",
- "end": "07-31",
- "seasonNorth": "Summer",
- "seasonSouth": "Winter",
- "coreTheme": "Radiance, leadership, visibility",
- "associations": {
- "planetId": "sol",
- "zodiacSignId": "leo",
- "tarotCard": "Strength",
- "godId": "ra"
- },
- "events": [
- {
- "id": "july-solar-crowning",
- "name": "Solar Crowning",
- "date": "07-19",
- "description": "Present one visible work publicly and receive clear feedback.",
- "associations": {
- "planetId": "sol",
- "zodiacSignId": "leo",
- "tarotCard": "Strength",
- "godId": "ra"
- }
- }
- ],
- "holidayIds": ["sirius-rising-window"]
- },
- {
- "id": "august",
- "order": 8,
- "name": "August",
- "start": "08-01",
- "end": "08-31",
- "seasonNorth": "Summer",
- "seasonSouth": "Winter",
- "coreTheme": "Refinement, discipline, service",
- "associations": {
- "planetId": "mercury",
- "zodiacSignId": "virgo",
- "tarotCard": "The Hermit",
- "godId": "thoth"
- },
- "events": [
- {
- "id": "august-harvest-ledger",
- "name": "Harvest Ledger",
- "date": "08-12",
- "description": "Audit progress and simplify tools before the autumn cycle.",
- "associations": {
- "planetId": "mercury",
- "zodiacSignId": "virgo",
- "tarotCard": "The Hermit",
- "godId": "thoth"
- }
- }
- ],
- "holidayIds": ["sirius-rising-window", "lughnasadh-cross-quarter"]
- },
- {
- "id": "september",
- "order": 9,
- "name": "September",
- "start": "09-01",
- "end": "09-30",
- "seasonNorth": "Autumn",
- "seasonSouth": "Spring",
- "coreTheme": "Balance, agreements, calibration",
- "associations": {
- "planetId": "venus",
- "zodiacSignId": "libra",
- "tarotCard": "Justice",
- "godId": "maat"
- },
- "events": [
- {
- "id": "september-balance-work",
- "name": "Balance Working",
- "date": "09-23",
- "description": "Rebalance effort across work, body, and relationships.",
- "associations": {
- "planetId": "venus",
- "zodiacSignId": "libra",
- "tarotCard": "Justice",
- "godId": "maat"
- }
- }
- ],
- "holidayIds": ["september-equinox", "autumn-eclipse-window"]
- },
- {
- "id": "october",
- "order": 10,
- "name": "October",
- "start": "10-01",
- "end": "10-31",
- "seasonNorth": "Autumn",
- "seasonSouth": "Spring",
- "coreTheme": "Depth work, release, transformation",
- "associations": {
- "planetId": "mars",
- "zodiacSignId": "scorpio",
- "tarotCard": "Death",
- "godId": "hades"
- },
- "events": [
- {
- "id": "october-shadow-ledger",
- "name": "Shadow Ledger",
- "date": "10-27",
- "description": "Name one pattern to end and one to transmute.",
- "associations": {
- "planetId": "mars",
- "zodiacSignId": "scorpio",
- "tarotCard": "Death",
- "godId": "hades"
- }
- }
- ],
- "holidayIds": ["autumn-eclipse-window", "samhain-cross-quarter"]
- },
- {
- "id": "november",
- "order": 11,
- "name": "November",
- "start": "11-01",
- "end": "11-30",
- "seasonNorth": "Autumn",
- "seasonSouth": "Spring",
- "coreTheme": "Meaning, direction, vision",
- "associations": {
- "planetId": "jupiter",
- "zodiacSignId": "sagittarius",
- "tarotCard": "Temperance",
- "godId": "zeus"
- },
- "events": [
- {
- "id": "november-vision-arrow",
- "name": "Vision Arrow",
- "date": "11-22",
- "description": "Choose one long-range objective and align this week to it.",
- "associations": {
- "planetId": "jupiter",
- "zodiacSignId": "sagittarius",
- "tarotCard": "Temperance",
- "godId": "zeus"
- }
- }
- ],
- "holidayIds": ["samhain-cross-quarter", "leonids-peak"]
- },
- {
- "id": "december",
- "order": 12,
- "name": "December",
- "start": "12-01",
- "end": "12-31",
- "seasonNorth": "Winter",
- "seasonSouth": "Summer",
- "coreTheme": "Closure, stillness, and renewal",
- "associations": {
- "planetId": "saturn",
- "zodiacSignId": "capricorn",
- "tarotCard": "The Devil",
- "godId": "kronos"
- },
- "events": [
- {
- "id": "december-year-seal",
- "name": "Year Seal",
- "date": "12-31",
- "description": "Consolidate lessons, close open loops, and define the next threshold.",
- "associations": {
- "planetId": "saturn",
- "zodiacSignId": "capricorn",
- "tarotCard": "The World",
- "godId": "saturn"
- }
- }
- ],
- "holidayIds": ["december-solstice", "geminids-peak"]
- }
- ]
-}
diff --git a/data/celestial-holidays.json b/data/celestial-holidays.json
deleted file mode 100644
index 6159656..0000000
--- a/data/celestial-holidays.json
+++ /dev/null
@@ -1,203 +0,0 @@
-{
- "meta": {
- "version": 1,
- "notes": "Special celestial observances (solstices, equinoxes, eclipse windows, and notable sky events)."
- },
- "holidays": [
- {
- "id": "perihelion",
- "name": "Earth Perihelion",
- "kind": "solar-point",
- "monthId": "january",
- "date": "01-03",
- "description": "Earth reaches its closest orbital point to the Sun.",
- "associations": {
- "planetId": "sol",
- "tarotCard": "The Sun",
- "godId": "ra"
- }
- },
- {
- "id": "imbolc-cross-quarter",
- "name": "Imbolc Cross-Quarter",
- "kind": "cross-quarter",
- "monthId": "february",
- "dateRange": "02-01 to 02-02",
- "description": "Seasonal threshold between winter solstice and spring equinox.",
- "associations": {
- "planetId": "luna",
- "zodiacSignId": "aquarius",
- "tarotCard": "The Star",
- "godId": "hecate"
- }
- },
- {
- "id": "march-equinox",
- "name": "March Equinox",
- "kind": "equinox",
- "monthId": "march",
- "date": "03-20",
- "description": "Equal day and night; marks spring in the north and autumn in the south.",
- "associations": {
- "planetId": "sol",
- "zodiacSignId": "aries",
- "tarotCard": "The Emperor",
- "godId": "maat"
- }
- },
- {
- "id": "spring-eclipse-window",
- "name": "Spring Eclipse Window",
- "kind": "eclipse-window",
- "monthId": "march",
- "dateRange": "03-15 to 04-15",
- "description": "Typical annual window for paired solar/lunar eclipses near nodal alignments.",
- "associations": {
- "planetId": "luna",
- "zodiacSignId": "aries",
- "tarotCard": "The Moon",
- "godId": "thoth"
- }
- },
- {
- "id": "beltane-cross-quarter",
- "name": "Beltane Cross-Quarter",
- "kind": "cross-quarter",
- "monthId": "may",
- "dateRange": "05-01 to 05-02",
- "description": "Fertility and fire threshold between equinox and solstice.",
- "associations": {
- "planetId": "venus",
- "zodiacSignId": "taurus",
- "tarotCard": "The Empress",
- "godId": "aphrodite"
- }
- },
- {
- "id": "june-solstice",
- "name": "June Solstice",
- "kind": "solstice",
- "monthId": "june",
- "date": "06-21",
- "description": "Longest day in the northern hemisphere; shortest in the southern hemisphere.",
- "associations": {
- "planetId": "sol",
- "zodiacSignId": "cancer",
- "tarotCard": "The Sun",
- "godId": "ra"
- }
- },
- {
- "id": "sirius-rising-window",
- "name": "Sirius Rising Window",
- "kind": "stellar-observance",
- "monthId": "july",
- "dateRange": "07-20 to 08-12",
- "description": "Heliacal rising period of Sirius in many northern latitudes.",
- "associations": {
- "planetId": "sol",
- "zodiacSignId": "leo",
- "tarotCard": "Strength",
- "godId": "isis"
- }
- },
- {
- "id": "lughnasadh-cross-quarter",
- "name": "Lughnasadh Cross-Quarter",
- "kind": "cross-quarter",
- "monthId": "august",
- "dateRange": "08-01 to 08-02",
- "description": "Harvest threshold between solstice and equinox.",
- "associations": {
- "planetId": "mercury",
- "zodiacSignId": "leo",
- "tarotCard": "The Hermit",
- "godId": "thoth"
- }
- },
- {
- "id": "september-equinox",
- "name": "September Equinox",
- "kind": "equinox",
- "monthId": "september",
- "date": "09-22",
- "description": "Equal day and night; marks autumn in the north and spring in the south.",
- "associations": {
- "planetId": "sol",
- "zodiacSignId": "libra",
- "tarotCard": "Justice",
- "godId": "maat"
- }
- },
- {
- "id": "autumn-eclipse-window",
- "name": "Autumn Eclipse Window",
- "kind": "eclipse-window",
- "monthId": "september",
- "dateRange": "09-15 to 10-15",
- "description": "Typical annual window for eclipse pairings near opposite nodal season.",
- "associations": {
- "planetId": "luna",
- "zodiacSignId": "libra",
- "tarotCard": "The Moon",
- "godId": "anubis"
- }
- },
- {
- "id": "samhain-cross-quarter",
- "name": "Samhain Cross-Quarter",
- "kind": "cross-quarter",
- "monthId": "october",
- "dateRange": "10-31 to 11-01",
- "description": "Threshold of deep autumn and ancestral observance in many traditions.",
- "associations": {
- "planetId": "saturn",
- "zodiacSignId": "scorpio",
- "tarotCard": "Death",
- "godId": "hades"
- }
- },
- {
- "id": "leonids-peak",
- "name": "Leonids Meteor Peak",
- "kind": "meteor-shower",
- "monthId": "november",
- "date": "11-17",
- "description": "Peak of the Leonids meteor shower under dark skies.",
- "associations": {
- "planetId": "jupiter",
- "zodiacSignId": "sagittarius",
- "tarotCard": "Temperance",
- "godId": "zeus"
- }
- },
- {
- "id": "december-solstice",
- "name": "December Solstice",
- "kind": "solstice",
- "monthId": "december",
- "date": "12-21",
- "description": "Shortest day in the northern hemisphere; longest in the southern hemisphere.",
- "associations": {
- "planetId": "sol",
- "zodiacSignId": "capricorn",
- "tarotCard": "The World",
- "godId": "saturn"
- }
- },
- {
- "id": "geminids-peak",
- "name": "Geminids Meteor Peak",
- "kind": "meteor-shower",
- "monthId": "december",
- "date": "12-14",
- "description": "Peak activity of the Geminids meteor shower.",
- "associations": {
- "planetId": "mercury",
- "zodiacSignId": "gemini",
- "tarotCard": "The Lovers",
- "godId": "hermes"
- }
- }
- ]
-}
diff --git a/data/chakras.json b/data/chakras.json
deleted file mode 100644
index 8650f97..0000000
--- a/data/chakras.json
+++ /dev/null
@@ -1,120 +0,0 @@
-{
- "root": {
- "id": "root",
- "name": {
- "en": "Root",
- "sa": "मूलाधार",
- "roman": "Muladhara"
- },
- "meaning": {
- "en": "Root"
- },
- "location": "base-of-spine",
- "petals": 4,
- "color": "red",
- "seed": "Lam",
- "seedMeaning": {
- "en": "earth"
- }
- },
- "sacral": {
- "id": "sacral",
- "name": {
- "en": "Sacral",
- "sa": "स्वाधिष्ठान",
- "roman": "Svadhishthana"
- },
- "meaning": {
- "en": "Where the self is established"
- },
- "location": "genitals",
- "petals": 6,
- "color": "orange",
- "seed": "Vam",
- "seedMeaning": {
- "en": "water"
- }
- },
- "solar-plexus": {
- "id": "solar-plexus",
- "name": {
- "en": "Solar Plexus",
- "sa": "मणिपूर",
- "roman": "Manipura"
- },
- "meaning": {
- "en": "Jewel city"
- },
- "location": "navel",
- "petals": 10,
- "color": "yellow",
- "seed": "Ram",
- "seedMeaning": {
- "en": "fire"
- }
- },
- "heart": {
- "id": "heart",
- "name": {
- "en": "Heart",
- "sa": "अनाहत",
- "roman": "Anahata"
- },
- "meaning": {
- "en": "Unstruck"
- },
- "location": "heart",
- "petals": 12,
- "color": "green",
- "seed": "Yam",
- "seedMeaning": {
- "en": "air"
- }
- },
- "throat": {
- "id": "throat",
- "name": {
- "en": "Throat",
- "sa": "विशुद्ध",
- "roman": "Vishuddha"
- },
- "meaning": {
- "en": "Purest"
- },
- "location": "throat",
- "petals": 16,
- "color": "blue",
- "seed": "Ham",
- "seedMeaning": {
- "en": "space"
- }
- },
- "third-eye": {
- "id": "third-eye",
- "name": {
- "en": "Third Eye",
- "sa": "आज्ञा",
- "roman": "Ajna"
- },
- "meaning": {
- "en": "Command"
- },
- "location": "third-eye",
- "petals": 2,
- "color": "indigo"
- },
- "crown": {
- "id": "crown",
- "name": {
- "en": "Crown",
- "sa": "सहस्रार",
- "roman": "Sahasrara"
- },
- "meaning": {
- "en": "Thousand-petaled"
- },
- "location": "crown",
- "petals": 1000,
- "color": "violet"
- }
-}
diff --git a/data/decans.json b/data/decans.json
deleted file mode 100644
index e780d8c..0000000
--- a/data/decans.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "meta": {
- "notes": "Decans reference sign IDs from signs.json to avoid duplicated sign metadata."
- },
- "decans": [
- { "id": "aries-1", "signId": "aries", "index": 1, "rulerPlanetId": "mars", "tarotMinorArcana": "2 of Wands" },
- { "id": "aries-2", "signId": "aries", "index": 2, "rulerPlanetId": "sol", "tarotMinorArcana": "3 of Wands" },
- { "id": "aries-3", "signId": "aries", "index": 3, "rulerPlanetId": "venus", "tarotMinorArcana": "4 of Wands" },
-
- { "id": "taurus-1", "signId": "taurus", "index": 1, "rulerPlanetId": "mercury", "tarotMinorArcana": "5 of Pentacles" },
- { "id": "taurus-2", "signId": "taurus", "index": 2, "rulerPlanetId": "luna", "tarotMinorArcana": "6 of Pentacles" },
- { "id": "taurus-3", "signId": "taurus", "index": 3, "rulerPlanetId": "saturn", "tarotMinorArcana": "7 of Pentacles" },
-
- { "id": "gemini-1", "signId": "gemini", "index": 1, "rulerPlanetId": "jupiter", "tarotMinorArcana": "8 of Swords" },
- { "id": "gemini-2", "signId": "gemini", "index": 2, "rulerPlanetId": "mars", "tarotMinorArcana": "9 of Swords" },
- { "id": "gemini-3", "signId": "gemini", "index": 3, "rulerPlanetId": "sol", "tarotMinorArcana": "10 of Swords" },
-
- { "id": "cancer-1", "signId": "cancer", "index": 1, "rulerPlanetId": "venus", "tarotMinorArcana": "2 of Cups" },
- { "id": "cancer-2", "signId": "cancer", "index": 2, "rulerPlanetId": "mercury", "tarotMinorArcana": "3 of Cups" },
- { "id": "cancer-3", "signId": "cancer", "index": 3, "rulerPlanetId": "luna", "tarotMinorArcana": "4 of Cups" },
-
- { "id": "leo-1", "signId": "leo", "index": 1, "rulerPlanetId": "saturn", "tarotMinorArcana": "5 of Wands" },
- { "id": "leo-2", "signId": "leo", "index": 2, "rulerPlanetId": "jupiter", "tarotMinorArcana": "6 of Wands" },
- { "id": "leo-3", "signId": "leo", "index": 3, "rulerPlanetId": "mars", "tarotMinorArcana": "7 of Wands" },
-
- { "id": "virgo-1", "signId": "virgo", "index": 1, "rulerPlanetId": "sol", "tarotMinorArcana": "8 of Pentacles" },
- { "id": "virgo-2", "signId": "virgo", "index": 2, "rulerPlanetId": "venus", "tarotMinorArcana": "9 of Pentacles" },
- { "id": "virgo-3", "signId": "virgo", "index": 3, "rulerPlanetId": "mercury", "tarotMinorArcana": "10 of Pentacles" },
-
- { "id": "libra-1", "signId": "libra", "index": 1, "rulerPlanetId": "luna", "tarotMinorArcana": "2 of Swords" },
- { "id": "libra-2", "signId": "libra", "index": 2, "rulerPlanetId": "saturn", "tarotMinorArcana": "3 of Swords" },
- { "id": "libra-3", "signId": "libra", "index": 3, "rulerPlanetId": "jupiter", "tarotMinorArcana": "4 of Swords" },
-
- { "id": "scorpio-1", "signId": "scorpio", "index": 1, "rulerPlanetId": "mars", "tarotMinorArcana": "5 of Cups" },
- { "id": "scorpio-2", "signId": "scorpio", "index": 2, "rulerPlanetId": "sol", "tarotMinorArcana": "6 of Cups" },
- { "id": "scorpio-3", "signId": "scorpio", "index": 3, "rulerPlanetId": "venus", "tarotMinorArcana": "7 of Cups" },
-
- { "id": "sagittarius-1", "signId": "sagittarius", "index": 1, "rulerPlanetId": "mercury", "tarotMinorArcana": "8 of Wands" },
- { "id": "sagittarius-2", "signId": "sagittarius", "index": 2, "rulerPlanetId": "luna", "tarotMinorArcana": "9 of Wands" },
- { "id": "sagittarius-3", "signId": "sagittarius", "index": 3, "rulerPlanetId": "saturn", "tarotMinorArcana": "10 of Wands" },
-
- { "id": "capricorn-1", "signId": "capricorn", "index": 1, "rulerPlanetId": "jupiter", "tarotMinorArcana": "2 of Pentacles" },
- { "id": "capricorn-2", "signId": "capricorn", "index": 2, "rulerPlanetId": "mars", "tarotMinorArcana": "3 of Pentacles" },
- { "id": "capricorn-3", "signId": "capricorn", "index": 3, "rulerPlanetId": "sol", "tarotMinorArcana": "4 of Pentacles" },
-
- { "id": "aquarius-1", "signId": "aquarius", "index": 1, "rulerPlanetId": "venus", "tarotMinorArcana": "5 of Swords" },
- { "id": "aquarius-2", "signId": "aquarius", "index": 2, "rulerPlanetId": "mercury", "tarotMinorArcana": "6 of Swords" },
- { "id": "aquarius-3", "signId": "aquarius", "index": 3, "rulerPlanetId": "luna", "tarotMinorArcana": "7 of Swords" },
-
- { "id": "pisces-1", "signId": "pisces", "index": 1, "rulerPlanetId": "saturn", "tarotMinorArcana": "8 of Cups" },
- { "id": "pisces-2", "signId": "pisces", "index": 2, "rulerPlanetId": "jupiter", "tarotMinorArcana": "9 of Cups" },
- { "id": "pisces-3", "signId": "pisces", "index": 3, "rulerPlanetId": "mars", "tarotMinorArcana": "10 of Cups" }
- ]
-}
\ No newline at end of file
diff --git a/data/enochian/dictionary.json b/data/enochian/dictionary.json
deleted file mode 100644
index 9c05a1c..0000000
--- a/data/enochian/dictionary.json
+++ /dev/null
@@ -1,22640 +0,0 @@
-{
- "A": {
- "gematria": [
- 6
- ],
- "meanings": [
- {
- "meaning": "I, my",
- "source": "EMPM"
- },
- {
- "meaning": "Un (A)",
- "source": "WE"
- },
- {
- "meaning": "in, with",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah",
- "source": "EMPM"
- }
- ]
- },
- "A-": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "with-",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "A-BABALOND": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "harlot, (of an)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "A-BAI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "stooping,(to the); attacking",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "A-C-LONDOH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "kingdom, in thy kingdom",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "A-CROODZI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "beginning, thy beginning",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "A-DEUNE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "across",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "A-SOBAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "whom, (on)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AABCO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SEPHIROTIC CROSS AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AAETPIO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior MARS of FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AAI": {
- "gematria": [
- 72
- ],
- "meanings": [
- {
- "meaning": "within you",
- "source": "EMPM"
- },
- {
- "meaning": "among, among you",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-ahee",
- "source": "EMPM"
- }
- ]
- },
- "AAIOM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "among us",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AALA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "placed you",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AANAA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AAO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "AMONG",
- "source": "WE"
- },
- {
- "meaning": "AMONG (alt.sp.)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AAOZAIF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior JUPITER of AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AAPDOCE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior VENUS of FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DAUGHTER OF DAUGHTER OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ABAI": {
- "gematria": [
- 77
- ],
- "meanings": [
- {
- "meaning": "stooping, to stoop down",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-ba-ee",
- "source": "EMPM"
- }
- ]
- },
- "ABALPT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross EARTH OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ABAMO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ABARAMIG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PREPARE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ABIORO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior MARS IN AIR TABLET (VAR)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ABMO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ABOAPRI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SERVE, LET THEM SERVE YOU",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ABOZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel AIR OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ABRAASSA": {
- "gematria": [
- 143
- ],
- "meanings": [
- {
- "meaning": "to provide",
- "source": "EMPM"
- },
- {
- "meaning": "provided",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-beh-rah-ah-ess-sah",
- "source": "EMPM"
- }
- ]
- },
- "ABRAMG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "prepared, i have prepared",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ABRAMIG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "prepared, are prepared",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ABRIOND": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN POP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ACAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 7699,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ACAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ACCA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ACHAPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Augoeides",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ACHOS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "12 Guardian Angels",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ACO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "of the holy pentagram",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ACRAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ACUCA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ACURTOH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "God is triumphant",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ACZINOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior JUP of EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "in the third, with the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADAMH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "with hosts of the Lord (stars)",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADAO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "in [or] with the third star",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADAPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Unto (or From) the Lord of Hosts",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "in the third is the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADEPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Unto (or From) the Lord of Hosts",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADEPOAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Within the 3 rd Heaven",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADGMACH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "much glory",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ADGT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "can",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ADIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Sun of God from the divine",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADIPR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Sun of God from the 3 rd",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADIRE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ADLPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "among the first to give",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "possess the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADMO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "God is man",
- "source": "WE",
- "source2": "Mistake",
- "note": "This word was found accidentally by misconstruing the word DAMO to ADMO. It is not found in Liber Loagaeth."
- }
- ],
- "pronounciations": []
- },
- "ADNA": {
- "gematria": [
- 66
- ],
- "meanings": [
- {
- "meaning": "obedience",
- "source": "EMPM"
- },
- {
- "meaning": "obedience",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-deh-nah",
- "source": "EMPM"
- }
- ]
- },
- "ADOEOET": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior JUPITER of FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ADOIAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "face, the face",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ADON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the face (of God)",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADOPA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ADPHAHT": {
- "gematria": [
- 30,
- 36
- ],
- "meanings": [
- {
- "meaning": "unspeakable",
- "source": "EMPM"
- },
- {
- "meaning": "unspeakable",
- "source": "EMPM"
- },
- {
- "meaning": "unspeakable",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-deh-peh-ah-teh",
- "source": "EMPM"
- },
- {
- "pronounciation": "ah-deh-peh-ah-teh",
- "source": "EMPM"
- }
- ]
- },
- "ADPUN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "With strong fire",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADRA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "involutes",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ADRAMAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF AN EVIL SPIRIT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ADRE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ADROCH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mount, in the olive mount",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ADRPAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "cast down",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ADRPHT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "casting down (crowley)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ADVORPT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN TEX",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AETPIO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior MARS of FIRE TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 19,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AFFA": {
- "gematria": [
- 18
- ],
- "meanings": [
- {
- "meaning": "empty",
- "source": "EMPM"
- },
- {
- "meaning": "empty",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-ef-fah",
- "source": "EMPM"
- }
- ]
- },
- "AFLAFBEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DEE'S GOOD ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AG": {
- "gematria": [
- 14
- ],
- "meanings": [
- {
- "meaning": "no",
- "source": "EMPM"
- },
- {
- "meaning": "no, none",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-geh",
- "source": "EMPM"
- }
- ]
- },
- "AGAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "not the Son of Son of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AGEFF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Trinity (3) manifests",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AGEMATOM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Trinity (3) echoes from the 4 th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AGES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "not the 4th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AGGS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Magus",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AGIOD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mortal",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AGO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "not the fifth",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "inner/higher self",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AHAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "inmost God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AHAOZPI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior VENUS of AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AHMLICV": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior MER of EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AHO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "in sacred measure",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AIAOAI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AIDROM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior MARS of EARTH TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AIDROPL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "governor",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AIGRA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AIRA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AISRO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PROMISE, THE PROMISE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AKELE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "(name of an angel)",
- "source": "EMPM",
- "source2": "pg 25"
- },
- {
- "meaning": "DAUGHTER OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "Ah-keh-leh",
- "source": "EMPM",
- "source2": "pg 25"
- }
- ]
- },
- "ALA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "place",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ALAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "settled, have settled",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ALCA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "judgment (?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ALDARAIA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "will of God (?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ALDI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "gathering, of gathering",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ALDON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "gathered together (they)",
- "source": "WE"
- },
- {
- "meaning": "gird up",
- "source": "WE"
- },
- {
- "meaning": "gather up",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ALGLA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "invoke the One",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ALHCTGA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior VEN of EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ALIDA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "one in name with",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ALLA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ALLA (a name of God; the naming of God’s will)",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ALLAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "bind up",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ALNDVOD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior LUNA of FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ALOAI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross FIRE OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ALPOD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "infinite",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ALPUDUS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Zodiacal King CANCER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ALSPLAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "among the angels",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AMBRIOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LOE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AMCHIH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Son of Light is with the 9",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AMGEDPHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "I begin anew",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AMIDAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "fixed to the Son of Son of Light-Mercury",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AMIPZI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "fastened, I fastened",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AMIRAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "yourselves",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AMLOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AMMA": {
- "gematria": [
- 192
- ],
- "meanings": [
- {
- "meaning": "cursed",
- "source": "EMPM"
- },
- {
- "meaning": "cursed",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-em-mah",
- "source": "EMPM"
- }
- ]
- },
- "AMOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AMPHAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "bound by the Son of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AMRVH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The power and presence of the Lord of Hosts in the angel of the East",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AMUDAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "wherefore ye are cursed",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SON OF SON OF LIGHT, MERCURY",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "ANAA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ANAEEM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross WATER OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ANANAEL": {
- "gematria": [
- 136
- ],
- "meanings": [
- {
- "meaning": "the Secret Wisdom",
- "source": "EMPM"
- },
- {
- "meaning": "wisdom, of the secret wisdom",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-nah-nah-el",
- "source": "EMPM"
- }
- ]
- },
- "ANBPHO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Son of Son of Light (Mercury) gives the holy pentagram.",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ANDISPI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZOM",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ANETAB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "government, in government",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ANGE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "within the thought [of God]",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ANGELARD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "thoughts, his thoughts",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ANGPOI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross AIR OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ANODOIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior MERCURY of FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ANOLPHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Son of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ANS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Son of Son of Light is the holy pentagram",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AOAYNNL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "1ST MINISTER OF VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AOIDIAB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "6TH MINISTER OF SOL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AOIVEAE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "stars, the stars",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AOURRZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross FIRE OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AOZPI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A GOD-NAME OF AIR TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AP": {
- "gematria": [
- 15
- ],
- "meanings": [
- {
- "meaning": "unchanging, same",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-peh",
- "source": "EMPM"
- }
- ]
- },
- "APACHANA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SLIMY THINGS MADE OF DUST",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "APDOCE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior VENUS of FIRE TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "APHLAFBEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DEE'S GOOD ANGEL (alt. sp.)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "APHRA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel WATER OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "APILA": {
- "gematria": [
- 89
- ],
- "meanings": [
- {
- "meaning": "eternal life, to live forever",
- "source": "EMPM"
- },
- {
- "meaning": "liveth",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-pee-lah",
- "source": "EMPM"
- }
- ]
- },
- "APLST": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "APOPHRASZ": {
- "gematria": [
- 171,
- 177
- ],
- "meanings": [
- {
- "meaning": "motion",
- "source": "EMPM"
- },
- {
- "meaning": "motion",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-poh-peh-rah-seh-zod",
- "source": "EMPM"
- },
- {
- "pronounciation": "ah-poh-peh-rah-seh-zod",
- "source": "EMPM"
- }
- ]
- },
- "APST": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AR": {
- "gematria": [
- 106
- ],
- "meanings": [
- {
- "meaning": "the sun, to prtect",
- "source": "EMPM"
- },
- {
- "meaning": "that",
- "source": "WE"
- },
- {
- "meaning": "to fan or winnow",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "are",
- "source": "EMPM"
- }
- ]
- },
- "ARBIZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross EARTH OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ARCHAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "spread amongst the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ARCHADS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "spread amongst the third is the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ARCHAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Daughter of Light is spread amongst the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ARDEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The Universal Mind",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ARDOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "fire of dissolution",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ARDZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross AIR OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ARFAOLG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Zodiacal King TAURUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ARGEDCO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "invoke (?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ARGRASPHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Daughter of Daughter of Light becomes Queen of the Moon",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ARINNAP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior SATURN of FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ARISSO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the mystical marriage",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ARN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SECOND AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ARNI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Beast",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ARP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "conquer (?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ARPHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "descend",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ARSETH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "wailing in their places",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ARSL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A GOD-NAME OF WATER TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ARTH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "gladness, of gladness",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ARVIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "God’s glory spread out",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ARXE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "for the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ARZULGE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF EVIL SPIRIT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "was",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ASCHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "God",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ASCHEDH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "God receives",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ASCHIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the divine will of the holy Son of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ASCLAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Lucifer was the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ASCLEH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "divine will",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ASCO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "this God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ASEV": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Reflected, ‘was reflected’",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "ASMT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ASP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "21ST AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ASPAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the infinity within",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ASPIAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "QUALITIES, IN THEIR QUALITIES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ASPIAON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN DEO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ASPT": {
- "gematria": [
- 25,
- 31
- ],
- "meanings": [
- {
- "meaning": "before, in front of",
- "source": "EMPM"
- },
- {
- "meaning": "before, in front of",
- "source": "EMPM"
- },
- {
- "meaning": "before",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-seh-peh-teh",
- "source": "EMPM"
- },
- {
- "pronounciation": "ah-seh-peh-teh",
- "source": "EMPM"
- }
- ]
- },
- "ASTEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ASTO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "was also this",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ASTRAPHOS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "(was) reflected in the East on the ecliptic",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ASYMP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "another, with another",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ATAPA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross FIRE OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ATH": {
- "gematria": [
- 10,
- 16
- ],
- "meanings": [
- {
- "meaning": "works",
- "source": "EMPM"
- },
- {
- "meaning": "works",
- "source": "EMPM"
- },
- {
- "meaning": "DAUGHTER OF DAUGHTER OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ah-teh",
- "source": "EMPM"
- },
- {
- "pronounciation": "ah-teh",
- "source": "EMPM"
- }
- ]
- },
- "ATRAAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "girdles, your girdles",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AU": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Shortened name of Ave, Son of Son of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AUDCAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "gold, philosophical mercury",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AUDROPL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "governor",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AVABH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "hiacynth, of hiacynth",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AVAVAGO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "thunders of increase",
- "source": "WE"
- },
- {
- "meaning": "thunders, the thunders",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AVAVOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "pomp, his pomp",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AVDROPT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN TAN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AVE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SON OF SON OF LIGHT, SOL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AVINY": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "millstones",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AVTOTAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior MERCURY of AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AVZNILN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "2ND MINISTER OF LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "surround",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AXA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "surround the one",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AXE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Surrounds the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AXIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AXO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "microcosm",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AXOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the glory of God’s creation",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "AXTIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AXZIARG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN PAZ",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AZDOBN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "(name of an angel)",
- "source": "EMPM",
- "source2": "pg 25"
- },
- {
- "meaning": "DAUGHTER OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "Ah-zod-doh-ben",
- "source": "EMPM",
- "source2": "pg 25"
- }
- ]
- },
- "AZIAGIER": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "harvest, like unto the harvest",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AZIAZIOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "likeness, in the likeness",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "AZIEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "hands, on whose hands",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "B": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Pa (B)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "power, ability, possibility",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BABAGE": {
- "gematria": [
- 40
- ],
- "meanings": [
- {
- "meaning": "South",
- "source": "EMPM"
- },
- {
- "meaning": "south, in the south",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bah-bah-geh",
- "source": "EMPM"
- }
- ]
- },
- "BABAGEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "south, of the south",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BABALEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "angel of mars in mars, king",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BABALON": {
- "gematria": [
- 110
- ],
- "meanings": [
- {
- "meaning": "evil, wicked",
- "source": "EMPM"
- },
- {
- "meaning": "wicked, the wicked",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bah-bah-loh-en",
- "source": "EMPM"
- }
- ]
- },
- "BABALOND": {
- "gematria": [
- 114
- ],
- "meanings": [
- {
- "meaning": "harlot, seductress",
- "source": "EMPM"
- },
- {
- "meaning": "harlot, a",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bah-bah-loh-en-deh",
- "source": "EMPM"
- }
- ]
- },
- "BABALUN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BABALON",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "BABAPON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "6TH MINISTER OF BRORGES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BABEPEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "6TH MINISTER OF SATURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BABLIBO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF SOL IN LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAEOVIB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "righteousness",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAEQUIB": {
- "gematria": [
- 186
- ],
- "meanings": [
- {
- "meaning": "righteousness",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bah-eh-oh-u-ee-beh",
- "source": "EMPM"
- }
- ]
- },
- "BAG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "28TH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAGENOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL VENUS IN LUNA, PRINCE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAGHIE": {
- "gematria": [
- 90
- ],
- "meanings": [
- {
- "meaning": "fury",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bah-geh-hee-eh",
- "source": "EMPM"
- }
- ]
- },
- "BAGIE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "fury, of fury",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAGLE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "for",
- "source": "WE"
- },
- {
- "meaning": "for why?",
- "source": "WE"
- },
- {
- "meaning": "because",
- "source": "WE"
- },
- {
- "meaning": "why?",
- "source": "WE"
- },
- {
- "meaning": "for",
- "source": "WE"
- },
- {
- "meaning": "why?",
- "source": "WE"
- },
- {
- "meaning": "because",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAGLEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "because",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAGNOLE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "angel venus in sol",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAHAL": {
- "gematria": [
- 26
- ],
- "meanings": [
- {
- "meaning": "to shout, to yell, to cry",
- "source": "EMPM"
- },
- {
- "meaning": "cry aloud",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bah-hall",
- "source": "EMPM"
- }
- ]
- },
- "BAI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "stooping, soaring down",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BALCEOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL SATURN IN JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BALDAGO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL JUPITER IN MERCURY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BALIE": {
- "gematria": [
- 89
- ],
- "meanings": [
- {
- "meaning": "salt",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bah-lee-eh",
- "source": "EMPM"
- }
- ]
- },
- "BALIGON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL VENUS IN VENUS, KING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BALIT": {
- "gematria": [
- 82,
- 88
- ],
- "meanings": [
- {
- "meaning": "the just",
- "source": "EMPM"
- },
- {
- "meaning": "the just",
- "source": "EMPM"
- },
- {
- "meaning": "justice, the just",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bah-lee-teh",
- "source": "EMPM"
- },
- {
- "pronounciation": "bah-lee-teh",
- "source": "EMPM"
- }
- ]
- },
- "BALT": {
- "gematria": [
- 22,
- 28
- ],
- "meanings": [
- {
- "meaning": "justice",
- "source": "EMPM"
- },
- {
- "meaning": "justice",
- "source": "EMPM"
- },
- {
- "meaning": "justice",
- "source": "WE"
- },
- {
- "meaning": "justice, of justice",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ball-teh",
- "source": "EMPM"
- },
- {
- "pronounciation": "ball-teh",
- "source": "EMPM"
- }
- ]
- },
- "BALTAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "justice, in his justice",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BALTIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "justice, fury or extreme justi",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BALTOH": {
- "gematria": [
- 53,
- 59
- ],
- "meanings": [
- {
- "meaning": "righteous",
- "source": "EMPM"
- },
- {
- "meaning": "righteous",
- "source": "EMPM"
- },
- {
- "meaning": "righteousness, of righteousnes",
- "source": "WE"
- },
- {
- "meaning": "righteousness, of",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ball-toh",
- "source": "EMPM"
- },
- {
- "pronounciation": "ball-toh",
- "source": "EMPM"
- }
- ]
- },
- "BALTOHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "righteousness, for my own",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BALYE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "salt, of salt",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BALZARG": {
- "gematria": [
- 136,
- 142
- ],
- "meanings": [
- {
- "meaning": "stewards",
- "source": "EMPM"
- },
- {
- "meaning": "stewards",
- "source": "EMPM"
- },
- {
- "meaning": "stewards",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bal-zodah-rah-geh",
- "source": "EMPM"
- },
- {
- "pronounciation": "bal-zodah-rah-geh",
- "source": "EMPM"
- }
- ]
- },
- "BALZIZRAS": {
- "gematria": [
- 198,
- 210
- ],
- "meanings": [
- {
- "meaning": "judgement",
- "source": "EMPM"
- },
- {
- "meaning": "judgement",
- "source": "EMPM"
- },
- {
- "meaning": "judgement, the",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bal-zodee-zod-rass",
- "source": "EMPM"
- },
- {
- "pronounciation": "bal-zodee-zod-rass",
- "source": "EMPM"
- }
- ]
- },
- "BAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "forgotten (schuler)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAMASAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF A GUARDIAN ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAMNODE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL SATURN IN LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAMS": {
- "gematria": [
- 108
- ],
- "meanings": [
- {
- "meaning": "to forget",
- "source": "EMPM"
- },
- {
- "meaning": "forget, let them forgetBANAA Kerubic Archangel WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bah-mess",
- "source": "EMPM"
- }
- ]
- },
- "BANSSZE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "1ST MINISTER OF SATURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BANZES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "generation",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "BAPNIDO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF MARS IN VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "prince",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "BARCES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF HAGONEL'S SEAL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BARFORT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL MERCURY IN LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BARIGES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF SOL IN MERCURY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BARMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF A DEMON",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BARMAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF A DEMON",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BARNAFA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF SOL IN JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BARTIRO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL JUPITER IN SATURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BASGIM": {
- "gematria": [
- 176
- ],
- "meanings": [
- {
- "meaning": "day",
- "source": "EMPM"
- },
- {
- "meaning": "day",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bah-seh-gee-em",
- "source": "EMPM"
- }
- ]
- },
- "BASLEDF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL LUNA IN VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BASM": {
- "gematria": [
- 110
- ],
- "meanings": [
- {
- "meaning": "noon, midday",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bah-zod-em",
- "source": "EMPM"
- }
- ]
- },
- "BASMELO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL JUPITER IN SOL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BASP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "substantial",
- "source": "WE"
- },
- {
- "meaning": "substantial",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "BASPALO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL LUNA IN MERCURY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BATAIVA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KING OF AIR TABLET (VAR)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BATAIVAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KING OF AIR TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BATAIVH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KING OF AIR TABLET (VAR)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAZCHIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN DES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAZM": {
- "gematria": [
- 104
- ],
- "meanings": [
- {
- "meaning": "noon, midday",
- "source": "EMPM"
- },
- {
- "meaning": "midday, noon",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bah-zod-em",
- "source": "EMPM"
- }
- ]
- },
- "BAZME": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "midday, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BAZPAMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL MERCURY IN MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BBAIGAO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "2ND MINISTER OF JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BBALPAE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "3RD MINISTER OF JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BBANIFG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "4TH MINISTER OF JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BBARNFL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "1ST MINISTER OF JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BBASNOD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "6TH MINISTER OF JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BBOSNIA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "5TH MINISTER OF JUPITER",
- "source": "WE"
- },
- {
- "meaning": "5TH MINISTER OF JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BDOPA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BEFAFES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF MARS IN SOL,PRINCE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BEFES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VOCATIVE CASE OF BEFAFES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BEIGIA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SON OF LIGHT, MERCURY OR SATUR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BELMAGEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KELLY'S EVIL ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BELMARA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL LUNA IN JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL WHO APPEARED TO D. & K.",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BENPAGI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL VENUS IN JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BERIANU": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BERMALE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL VENUS IN MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BERNOLE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL MERCURY IN SOL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BESGEME": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL JUPITER IN VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BESZ": {
- "gematria": [
- 25,
- 31
- ],
- "meanings": [
- {
- "meaning": "matter",
- "source": "EMPM"
- },
- {
- "meaning": "matter",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bess-zod",
- "source": "EMPM"
- },
- {
- "pronounciation": "bess-zod",
- "source": "EMPM"
- }
- ]
- },
- "BEVEGJAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Coagula; gathering all, gathering the ALL",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "BI": {
- "gematria": [
- 65
- ],
- "meanings": [
- {
- "meaning": "voice",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bee",
- "source": "EMPM"
- }
- ]
- },
- "BIA": {
- "gematria": [
- 71
- ],
- "meanings": [
- {
- "meaning": "voices",
- "source": "EMPM"
- },
- {
- "meaning": "voices, yourBIAB stand",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bee-ah",
- "source": "EMPM"
- }
- ]
- },
- "BIAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VOICE, THE VOICE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BIEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VOICE, MY VOICE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BIGLIAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "comforter, in our",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BINODAB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL VENUS IN MERCURY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BINOFON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF MARS IN MERCURY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BITOM": {
- "gematria": [
- 188,
- 194
- ],
- "meanings": [
- {
- "meaning": "fire",
- "source": "EMPM"
- },
- {
- "meaning": "fire",
- "source": "EMPM"
- },
- {
- "meaning": "FIRE NAME, TABLET OF UNION",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bee-toh-em",
- "source": "EMPM"
- },
- {
- "pronounciation": "bee-toh-em",
- "source": "EMPM"
- }
- ]
- },
- "BLANS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "harbored, are",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLBOPOO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "5TH MINISTER OF SATURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLIAR": {
- "gematria": [
- 179
- ],
- "meanings": [
- {
- "meaning": "comfort, ease",
- "source": "EMPM"
- },
- {
- "meaning": "comfort, var. of \"blior\"",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "beh-lee-ah-rah",
- "source": "EMPM"
- }
- ]
- },
- "BLIARD": {
- "gematria": [
- 183
- ],
- "meanings": [
- {
- "meaning": "to be with comfort",
- "source": "EMPM"
- },
- {
- "meaning": "comfort, with",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "beh-lee-ah-rah-deh",
- "source": "EMPM"
- }
- ]
- },
- "BLIIGAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL MERCURY IN SATURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLINGEF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL JUPITER IN LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLINTOM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL SATURN IN MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLIOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "comfort, continual comforters",
- "source": "WE"
- },
- {
- "meaning": "comfort",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLIORAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "comfort, shall comfort",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLIORB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "comfort, of comfort",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLIORS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "comfort, of",
- "source": "WE"
- },
- {
- "meaning": "comfort, to our comfort",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLIORT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "comfort, of",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLISDON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL MERCURY IN JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLLOLOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FIFTH MINISTER OF BRORGES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLUMAPO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL MERCURY IN VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BLUMAZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL LUNA IN LUNA, KING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BMAMGAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL SATURN IN VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BMILGES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF MARS IN JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BMINPOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF MARS IN SATURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BNAMGEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "3RD MINISTER OF SATURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BNANGEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "3RD MINISTER OF BRORGES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BNAPSEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL SATURN IN SATURN, KING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BNASPOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL MERCURY IN MERCURY, KING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BNG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "guardian",
- "source": "WE"
- },
- {
- "meaning": "guardian",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "BNVAGES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "4TH MINISTER OF SATURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BNVIGER": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "4TH MINISTER OF BRORGES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BOBOGEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF SOL IN SOL, KING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BOGEMO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BOGPA": {
- "gematria": [
- 58
- ],
- "meanings": [
- {
- "meaning": "to govern",
- "source": "EMPM"
- },
- {
- "meaning": "reigns",
- "source": "WE"
- },
- {
- "meaning": "reigns",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "boh-geh-pah",
- "source": "EMPM"
- }
- ]
- },
- "BOLP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "be thou",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BONEFON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF SOL IN MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BOOAPIS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SERVE, LET HER SERVE THEMBORMILA ANGEL VENUS IN SATURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BORNOGO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF SOL IN VENUS, PRINCE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BOZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel AIR OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BPSAC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRAGIOP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL LUNA IN MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRALGES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL LUNA IN SATURN, PRINCE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRANGLO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL SATURN IN SOL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRANSG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "guard",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRAP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRASGES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VAR OF BRALGES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRGDA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "sleep",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRGDO": {
- "gematria": [
- 147
- ],
- "meanings": [
- {
- "meaning": "sleep",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "bar-geh-doh",
- "source": "EMPM"
- }
- ]
- },
- "BRIAP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "have",
- "source": "WE"
- },
- {
- "meaning": "has",
- "source": "WE"
- },
- {
- "meaning": "hast",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRINTS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "have",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRISFLI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL LUNA IN SOL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRISFOG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "with the eclipse",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "BRITA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "talk, I have talked of you",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BRORGES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL SATURN IN MERCURY,PRINCE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BUSCNAB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF SOL IN SATURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BUSD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "glory, in glory",
- "source": "WE"
- },
- {
- "meaning": "glory, in the glory",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BUSDIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "glory, the",
- "source": "WE"
- },
- {
- "meaning": "glory, that the glory",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BUSDUNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF MARS IN LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BUTMON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mouth, has opened his mouth",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BUTMONA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mouth, of his mouth",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BUTMONI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mouth, from their mouths",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BUTMONO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL JUPITER IN MARS, PRINCE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BUZD": {
- "gematria": [
- 82,
- 88
- ],
- "meanings": [
- {
- "meaning": "glory",
- "source": "EMPM"
- },
- {
- "meaning": "glory",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "buh-zod-deh",
- "source": "EMPM"
- },
- {
- "pronounciation": "buh-zod-deh",
- "source": "EMPM"
- }
- ]
- },
- "BVRISE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "glorious cry, infinite wail",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "BYAPAOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "2ND MINISTER OF BRORGES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BYAPARE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "2ND MINISTER OF SATURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BYNEPOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL JUPITER IN JUPITER,KING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "BZIZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel FIRE OF FIREC Veh (C or K)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "C": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "of, unto,on, with; o,oh",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "therefore",
- "source": "WE"
- },
- {
- "meaning": "therefor",
- "source": "WE"
- },
- {
- "meaning": "another",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "a rod",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CABA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "govern, to; (see 'cab')",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CACACOM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "flourish",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CACARG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "until",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CACRG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "until",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CADAAMP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Zodiacal King SAGITTARIUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "abides",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "CAFAFAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "abiding, var of casasam",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CALZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "firmaments, above the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CALZIRG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LIN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "speaking",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "CAMASCHETH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAMIKAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAMLIAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "spoke (p.t. of \"speak\")",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CANAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "workers, continual workmen",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CANSE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mighty",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAOSG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "earth, the",
- "source": "WE"
- },
- {
- "meaning": "earth, on the",
- "source": "WE"
- },
- {
- "meaning": "earth, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAOSGA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "earth, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAOSGI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "earth, the",
- "source": "WE"
- },
- {
- "meaning": "earth, than the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAOSGIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "earth, var of caosg",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAOSGO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "earth, of the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAOSGON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "earth, to the earth",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "in turn",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "CAPIMALI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "successively",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAPIMAO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "time, while",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAPIMAON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "time, the number of",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAPMIALI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "successively (alt.sp.)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CAPPO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "therefore the Sons of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "CARBAF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "sink",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CARMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "come out",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CARMARA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KING OF HEPTARCHY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CARNAT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "invoke the Lord",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "CAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "who is",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "CASARM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "whom, to whom",
- "source": "WE"
- },
- {
- "meaning": "whom, unto whomCASARMA whom",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CASARMAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "whom, of whom",
- "source": "WE"
- },
- {
- "meaning": "whom, under whose",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CASARMG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "whom, in whom",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CASARMI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "whom, under whom",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CASASAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "abiding, their",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CELPADMAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CEM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "of the nine; unto the nine; with the nine",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "CEPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER Z",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "of the Son of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "CHIALPS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN NIA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CHIEUAK": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Being with Vaa",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "CHIIS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "are they",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CHILDAO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "diamond, with",
- "source": "WE"
- },
- {
- "meaning": "diamonds",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CHIRLAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "rejoices",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CHIRZPA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ASP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CHIS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "are",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CHISO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "are, shall be",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CHR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "TWENTIETH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CHRAMSA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CHRISTEOS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "let there be",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CIAI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 9996,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CIAOFI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "terror, to the terror of",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CICLE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mysteries, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CICLES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mysteries, of your mysteries",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CINXIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mingled",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CLA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 456,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CNILA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "blood, of",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CNOQOD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "servants, his",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CNOQUODI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "servants, with the ministers",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CNOQUOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "servants, o you",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "COAZIOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "increase",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "COCASB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "times",
- "source": "WE"
- },
- {
- "meaning": "time",
- "source": "WE"
- },
- {
- "meaning": "time, of",
- "source": "WE"
- },
- {
- "meaning": "time, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "COLLAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "sleeves",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "COMANAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZAX",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "COMMAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "trussed you together",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "COMO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "window, a",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "COMSELH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "circle, a",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CONGAMPHLGH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MAN'S SPIRIT; THE HOLY GHOST; 212",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CONISBRA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "work of man, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CONST": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "thunders, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "COR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "number",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORABIEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "angel of mercury ???",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORAXO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "thunders of judgment & wrath",
- "source": "WE"
- },
- {
- "meaning": "thunders",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "made",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORDZIZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "man",
- "source": "WE"
- },
- {
- "meaning": "men, reasoning creatures",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORFAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "name of a guardian angel",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORMF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "number",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORMFA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "numbers",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORMP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "numbered",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORMPO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "number, have numbered",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORMPT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "number, be numbered",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORONZON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "demon",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "such, work",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CORSI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "such, of such as",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CRALPIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZIP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CRAMSA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "beginning with 9 in the 4th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "CRIP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "but",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CROODZI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "beginning, 2nd beginning of the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CRP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "but (alt.sp.)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CRUSCANSE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "more mighty",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CUCARPT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LEA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CURES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "here (?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CZNS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "CZONS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF AIR (VAR)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "D": {
- "gematria": [
- 4
- ],
- "meanings": [
- {
- "meaning": "one third",
- "source": "EMPM"
- },
- {
- "meaning": "Gal (D)",
- "source": "WE"
- },
- {
- "meaning": "third, the third",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "deh",
- "source": "EMPM"
- }
- ]
- },
- "DA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "there",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DABIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "(manifested word of God) Logos",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "thrice",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DALPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "among the first to give",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DALTT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "several",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DAMO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "several men",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DAMPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "various",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DAMPLOZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "variety",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "3 in 1",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DANPHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the three are One",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DANZAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "universal law",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DAOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 5678,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DAPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Speaking from there",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DAPI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The Philosopher’s Stone",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DARBS": {
- "gematria": [
- 122
- ],
- "meanings": [
- {
- "meaning": "obedience",
- "source": "EMPM"
- },
- {
- "meaning": "obey",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "dar-bess",
- "source": "EMPM"
- }
- ]
- },
- "DARG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 6739,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DARR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THE PHILOSOPHER'S STONE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DARSAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "wherefore",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DASCH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "a thousand angels of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DASMAT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "a thousand angels",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DASPI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DATT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DAVEZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "there unto them",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "loins",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DAXIL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "loins, thy",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DAXZUM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "seed",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DAZIS": {
- "gematria": [
- 80,
- 86
- ],
- "meanings": [
- {
- "meaning": "head, heads",
- "source": "EMPM"
- },
- {
- "meaning": "head, heads",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "dah-zodee-ess",
- "source": "EMPM"
- },
- {
- "pronounciation": "dah-zodee-ess",
- "source": "EMPM"
- }
- ]
- },
- "DAZIZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "heads, the",
- "source": "WE"
- },
- {
- "meaning": "heads, their",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "of",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DEDVILH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DEF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "visiting",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DEGEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "not of the first",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DEM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "separate",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DEMPHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "separate unto the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DEO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SEVENTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "26TH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DEX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "of the One",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DIAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A GOD-NAME OF EARTH TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DIALIOAI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ARNDIARI Servient Angel WATER OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DILZMO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "differ, let them differ",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DINOXA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "3 paths",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DIOM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DIRI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DIU": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "angle",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DIV": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "angle",
- "source": "WE"
- },
- {
- "meaning": "angle",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DIXOM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DLASOD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ALCHEMICAL SULPHUR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DLUGA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "give, giving",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DLUGAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "given, p.t. \"to give\"",
- "source": "WE"
- },
- {
- "meaning": "give, given",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DLUGAR": {
- "gematria": [
- 196
- ],
- "meanings": [
- {
- "meaning": "to give",
- "source": "EMPM"
- },
- {
- "meaning": "give, gave them",
- "source": "WE"
- },
- {
- "meaning": "give, giving unto them",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "deh-lu-gar",
- "source": "EMPM"
- }
- ]
- },
- "DMAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SON OF LIGHT, JUPITER OR MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DO": {
- "gematria": [
- 34
- ],
- "meanings": [
- {
- "meaning": "name",
- "source": "EMPM"
- },
- {
- "meaning": "Root of Don (R), which is the root of the word for 'Hell Fire' and the word for 'Sun of God'",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "doh",
- "source": "EMPM"
- }
- ]
- },
- "DOAGNIS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ARN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DOALIM": {
- "gematria": [
- 198
- ],
- "meanings": [
- {
- "meaning": "sin",
- "source": "EMPM"
- },
- {
- "meaning": "SIN, OF SIN",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "doh-ah-lee-em",
- "source": "EMPM"
- }
- ]
- },
- "DOANZIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZIP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DOBIX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FALL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DOCEPAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZIM",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DODPAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VEX, LET THEM VEX",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DODRMNI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VEX, VEXED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DODS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VEX, VEXING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DODSEH": {
- "gematria": [
- 56
- ],
- "meanings": [
- {
- "meaning": "vexation",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "doh-dess-eh",
- "source": "EMPM"
- }
- ]
- },
- "DODSIH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VEX, VEXATION",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DOH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "holy fire",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DOLOP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DOMIOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Making the Lord to Understanding",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER R",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DONASDOGAMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "TASTOS HELL-FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DONGLSES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Daughter of Light pines for the Sun of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DONITON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Sun of God is begotten",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DONKNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sun of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DONLA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "primordial fire",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DONS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Sun of God to the 4 th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DOOAIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME",
- "source": "WE"
- },
- {
- "meaning": "NAME, HIS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DOOAIO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME, IN THE NAME OF (ALT.SP)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DOOIAP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME, IN THE NAME OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DOOP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DOPA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DORPHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "LOOK, LOOKED ABOUT ME",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DORPHAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "LOOK, LOOKING WITH GLADNESS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DOSCH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "of the night",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DOSIG": {
- "gematria": [
- 109
- ],
- "meanings": [
- {
- "meaning": "night",
- "source": "EMPM"
- },
- {
- "meaning": "NIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "doh-see-geh",
- "source": "EMPM"
- }
- ]
- },
- "DOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the sacrificial fire",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DOXMAEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN TEX",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DRAMAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the (third) East is in darkness",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DRILPA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GREAT",
- "source": "WE"
- },
- {
- "meaning": "GREAT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DRILPI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GREATER (LARGER?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DRINOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "invoke the Hexagram of dissolution",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DRIX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BRING DOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DROES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "at any quarter",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DROLN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANY, AT ANY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DROXAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "any part of the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DRUN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER N",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DRUX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER N",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DRUXARH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Angel of the East is among the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DRVLTHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The angel of the East is seated with the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WHICH",
- "source": "WE"
- },
- {
- "meaning": "AND",
- "source": "WE"
- },
- {
- "meaning": "THAT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DST": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WHICH (alt.sp.)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "DVN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the body of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "DVXMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the body of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "E": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Graph (E)",
- "source": "WE"
- },
- {
- "meaning": "DAUGHTER OF LIGHT",
- "source": "WE"
- },
- {
- "meaning": "(name of an angel)",
- "source": "EMPM",
- "source2": "pg 25"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "Eh",
- "source": "EMPM",
- "source2": "pg 25"
- }
- ]
- },
- "EAI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "AMONG, VAR OF 'AAI'",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EBAO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "aethyr",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "ECAOP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ECOP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ECRIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PRAISE, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EDLPRNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KING OF FIRE TABLET (VAR)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EDLPRNAA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ELEMENTAL KING OF FIRE TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EDNAS": {
- "gematria": [
- 77
- ],
- "meanings": [
- {
- "meaning": "receivers",
- "source": "EMPM"
- },
- {
- "meaning": "RECEIVE, AS RECEIVERS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ed-nah-ess",
- "source": "EMPM"
- }
- ]
- },
- "EF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VISIT US",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EFAFAFE": {
- "gematria": [
- 41
- ],
- "meanings": [
- {
- "meaning": "vessels",
- "source": "EMPM"
- },
- {
- "meaning": "VIALS, YOUR VIOLS",
- "source": "WE"
- },
- {
- "meaning": "VIALS (?VIOLS)",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "eff-aff-aff-eh",
- "source": "EMPM"
- }
- ]
- },
- "EFE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "holy",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "EGO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HOLY, THE",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "EILOMFO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "1ST MINISTER OF MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EKIEI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DAUGHTER OF DAUGHTER OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EL": {
- "gematria": [
- 18
- ],
- "meanings": [
- {
- "meaning": "first",
- "source": "EMPM"
- },
- {
- "meaning": "FIRST, THE",
- "source": "WE"
- },
- {
- "meaning": "SON OF SON OF LIGHT, VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "el",
- "source": "EMPM"
- }
- ]
- },
- "ELA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FIRST",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ELGNSEB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "1ST MINISTER OF MERCURY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ELO": {
- "gematria": [
- 48
- ],
- "meanings": [
- {
- "meaning": "all",
- "source": "EMPM"
- },
- {
- "meaning": "FIRST",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "el-oh",
- "source": "EMPM"
- }
- ]
- },
- "ELZAP": {
- "gematria": [
- 36,
- 42
- ],
- "meanings": [
- {
- "meaning": "way, course",
- "source": "EMPM"
- },
- {
- "meaning": "way, course",
- "source": "EMPM"
- },
- {
- "meaning": "COURSE, THE COURSE",
- "source": "WE"
- },
- {
- "meaning": "COURSE, COURSES",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "el-zodah-peh",
- "source": "EMPM"
- },
- {
- "pronounciation": "el-zodah-peh",
- "source": "EMPM"
- }
- ]
- },
- "EM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NINE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EMETGIS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SEAL, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EMNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HERE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EMOD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 876,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ENAY": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "LORD, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "make, making, ‘I made you’",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "EOAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "making",
- "source": "WE",
- "source2": "Table of 12"
- },
- {
- "meaning": "‘making’, ‘the Sons of the Son of Light’",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "EOGA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THE PLACE (Schuler)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MAKE, I MADE YOU",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EOLIS": {
- "gematria": [
- 115
- ],
- "meanings": [
- {
- "meaning": "to make",
- "source": "EMPM"
- },
- {
- "meaning": "MAKE, MAKING",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "eh-oh-lee-es",
- "source": "EMPM"
- }
- ]
- },
- "EOO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Archetypal man, makes or making man",
- "source": "WE",
- "source2": "Table of 12"
- }
- ],
- "pronounciations": []
- },
- "EOPHAN": {
- "gematria": [
- 106
- ],
- "meanings": [
- {
- "meaning": "sorrow",
- "source": "EMPM"
- },
- {
- "meaning": "LAMENTATION, OF",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "eh-oh-peh-han",
- "source": "EMPM"
- }
- ]
- },
- "EORS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HUNDRED, WITH AN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ERAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 6332,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ERGDBAB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "6TH MINISTER OF MERCURY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ERM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ARK, WITH THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ERZLA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel AIR OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ES": {
- "gematria": [
- 17
- ],
- "meanings": [
- {
- "meaning": "one fourth, a quarter",
- "source": "EMPM"
- },
- {
- "meaning": "FOURTHESE DAUGHTER OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ess",
- "source": "EMPM"
- }
- ]
- },
- "ESE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "(name of an angel)",
- "source": "EMPM",
- "source2": "pg 25"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "Es-seh",
- "source": "EMPM",
- "source2": "pg 25"
- }
- ]
- },
- "ESEMELI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DAUGHTER OF DAUGHTER OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ESIASCH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BROTHERS, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ETAAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ETDIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel WATER OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ETEVLGL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "6TH MINISTER OF MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ETHAMZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "COVER, ARE COVERED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ETHAMZA": {
- "gematria": [
- 131
- ],
- "meanings": [
- {
- "meaning": "to be covered, hidden",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "en-teh-ham-zodah",
- "source": "EMPM"
- }
- ]
- },
- "ETHARZI": {
- "gematria": [
- 183,
- 195
- ],
- "meanings": [
- {
- "meaning": "in peace",
- "source": "EMPM"
- },
- {
- "meaning": "in peace",
- "source": "EMPM"
- },
- {
- "meaning": "PEACE, IN",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "eh-teh-har-zodee",
- "source": "EMPM"
- },
- {
- "pronounciation": "eh-teh-har-zodee",
- "source": "EMPM"
- }
- ]
- },
- "ETNBR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EXARP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "AIR NAME, TABLET OF UNION",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EXENTASER": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MOTHER OF ALL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EXGSD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel FIRE OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "EYTPA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel WATER OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "F": {
- "gematria": [
- 3
- ],
- "meanings": [
- {
- "meaning": "to visit",
- "source": "EMPM"
- },
- {
- "meaning": "Orth (F)",
- "source": "WE"
- },
- {
- "meaning": "VISIT",
- "source": "WE"
- },
- {
- "meaning": "VISIT US",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "eff",
- "source": "EMPM"
- }
- ]
- },
- "FA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "arrives",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "FAAIP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VOICE, YOUR VOICES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "FABOAN": {
- "gematria": [
- 100
- ],
- "meanings": [
- {
- "meaning": "poison",
- "source": "EMPM"
- },
- {
- "meaning": "POISON, WITH",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "fah-boh-an",
- "source": "EMPM"
- }
- ]
- },
- "FAF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Your thought",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "FAFEN": {
- "gematria": [
- 72
- ],
- "meanings": [
- {
- "meaning": "to train",
- "source": "EMPM"
- },
- {
- "meaning": "TRAIN, YOUR",
- "source": "WE"
- },
- {
- "meaning": "INTENT, TO THE INTENT THAT",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "eff-aff-en",
- "source": "EMPM"
- }
- ]
- },
- "FALOD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the third arrives first",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "FAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER S",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "FAMOLET": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Daughter of Light covers the first",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "FAMSED": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Daughter of Light cxrying in the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "FAONTS": {
- "gematria": [
- 99,
- 105
- ],
- "meanings": [
- {
- "meaning": "to dwell in",
- "source": "EMPM"
- },
- {
- "meaning": "to dwell in",
- "source": "EMPM"
- },
- {
- "meaning": "DWELLING",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "fah-oh-en-tess",
- "source": "EMPM"
- },
- {
- "pronounciation": "fah-oh-en-tess",
- "source": "EMPM"
- }
- ]
- },
- "FAORGT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DWELLING PLACE, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "FARGT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DWELLING PLACES, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "FARZM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VOICE, YOU LIFTED YOUR VOICES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "fatesged": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the 4 th heaven",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "FAXMAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "one with the infinite",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "FAXS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 7336,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "FIAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "She is visited upon",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "FIFALZ": {
- "gematria": [
- 83,
- 89
- ],
- "meanings": [
- {
- "meaning": "to eliminate, to weed out",
- "source": "EMPM"
- },
- {
- "meaning": "to eliminate, to weed out",
- "source": "EMPM"
- },
- {
- "meaning": "WEED OUT",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "fee-fall-zod",
- "source": "EMPM"
- },
- {
- "pronounciation": "fee-fall-zod",
- "source": "EMPM"
- }
- ]
- },
- "FIRE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WOE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "FISIS": {
- "gematria": [
- 137
- ],
- "meanings": [
- {
- "meaning": "to do, perform",
- "source": "EMPM"
- },
- {
- "meaning": "EXECUTE, CARRY OUT",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "fee-see-ess",
- "source": "EMPM"
- }
- ]
- },
- "FMND": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "FMOND": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF AIR (VAR)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "FR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "‘that which you have within yourself'",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "FRES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "that which you have within you is the fourth",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "G": {
- "gematria": [
- 8
- ],
- "meanings": [
- {
- "meaning": "not, only",
- "source": "EMPM"
- },
- {
- "meaning": "Ged (G)",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "geh",
- "source": "EMPM"
- }
- ]
- },
- "G-DO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THE NAME OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "G-RSAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ADMIRATION, WITHGRU DEED, FACT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "31, make, with, name of an angel; meaning ‘Last breath of the living’, spirits, the fifth angel",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the third angel",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GAG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GAH": {
- "gematria": [
- 15
- ],
- "meanings": [
- {
- "meaning": "spirit, spirits",
- "source": "EMPM"
- },
- {
- "meaning": "SPIRIT, THE SPIRITS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "gah",
- "source": "EMPM"
- }
- ]
- },
- "GAHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "EXISTED; BABE OF THE ABYSS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GAHAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "EXISTS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GAHALANA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WILL EXIST",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GAHIRE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GAHOACHMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "I AM THAT I AM, TITLE OF GOD",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GAIOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A GOD-NAME OF WATER TABLET",
- "source": "WE"
- },
- {
- "meaning": "holy name of 5 letters ruling the element of Water",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GAL, ENOCHIAN LETTER D",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GALGOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GALSE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the night sky",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GALSENOT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "one star in a company of stars",
- "source": "WE",
- "source2": "Liber Loagaeth",
- "note": "This word was created by accidentally combining two words in Loagaeth and translating them as one."
- }
- ],
- "pronounciations": []
- },
- "GALSUAGAPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE",
- "note": "We found this word during our translation of Liber Loagaeth and translate it as: The spirit of Va, the 5 th Angel is the immortal nature."
- }
- ],
- "pronounciations": []
- },
- "GALSUAGATH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE",
- "note": "We found this word during our translation of Liber Loagaeth and translate it as: The spirit of Va, the 5 th Angel is the immortal nature."
- }
- ],
- "pronounciations": []
- },
- "GALVAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "END, NAME OF AN ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "[the] watery loins",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GAMLED": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the watery loins of the Daughter of Light initiate the East",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GAMPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "that which is not",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GAMPHEDAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "[the] watery loins of the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "of the angel",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GANEBUS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "angelic",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GANISLAY": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF A DEMON",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GANIURAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GANPOGAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the angelic image of the Sun of God is made in the 4th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GANPORT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "angelic image of the Sun of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GAPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "I give Ga",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Archangel of the East",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GARMAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GARMES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Spirit of the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GARNASTEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GARP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GASCAMPHO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Why didst thou so?—as God said to Lucifer.",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GASLAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "[this is] Why [did] God [?]",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GASSAGEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DIVINE POWER CREATING ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GAZAVAA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A FORMED NAMED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "slime",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "GB-EBAO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Milk of the stars",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "GBAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GBEAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GCHISGE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NOT, ARE NOT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GE": {
- "gematria": [
- 18
- ],
- "meanings": [
- {
- "meaning": "not, only",
- "source": "EMPM"
- },
- {
- "meaning": "NOT, IS NOT",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "geh",
- "source": "EMPM"
- }
- ]
- },
- "GE-OOEEON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THE EYES NEED ONLY TO (Schuler)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GEBABAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Zodiacal King LIBRA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GEBAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "not being",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GEBED": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "not gathering the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GECAOND": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZIM",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GED": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "is not the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- },
- {
- "meaning": "GED, ENOCHIAN LETTER G",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GEDO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "speech",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GEDON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "holy speech",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GEDOONS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LOE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GEDOTBAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BEGOTTEN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GEDVTH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "three-fold negative God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GEH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ARE, ART (f.p.sing \"to be\")",
- "source": "WE"
- },
- {
- "meaning": "THOU ART",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GEIAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "OUR LORD AND MASTER (alt.sp.)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GEM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "is not the 9",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GEMAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The Son of Son of Light is not the 9",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GEMEDSOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "from the 3 rd Heaven",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GEMEGANZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "YOUR WILL BE DONE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GEMNIMB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN TEX",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GEMPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "without the water",
- "source": "WE",
- "source2": "Liber Loagaeth"
- },
- {
- "meaning": "yield",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GENA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "from the Lord of Hosts (with)",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GENADOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN DEO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GENILE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "from the Lord of Hosts, the Son of Son of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GENO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "from the Lord of Hosts",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GENS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "from the 4 th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GENSO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "from the Lord of Hosts, the holy Pentagram",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GENZE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "from the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GEPHNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GER": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER Q",
- "source": "WE"
- },
- {
- "meaning": "choose, choice",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GERPALO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "not remaining in this place",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "is not the 4 th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GESCO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "is not the fourth, but with the holy Pentagram...",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GESCOGIER": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HARVEST",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GEST": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "it also is not the 4 th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GETA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "OUT OF HIM",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GEVAMNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BEGINNING (?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "possess, inhabit",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "GGLPPSA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "4TH MINISTER OF VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WITH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GIGIPAH": {
- "gematria": [
- 152
- ],
- "meanings": [
- {
- "meaning": "living braeth",
- "source": "EMPM"
- },
- {
- "meaning": "BREATH, LIVING BREATH",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "gee-gee-pah",
- "source": "EMPM"
- }
- ]
- },
- "GIL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WE WANT (?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GISA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER T",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GISG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER T",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GITHGULCAG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF A DEMON",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GIVI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "STRONGER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GIXYAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "EARTHQUAKES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GLA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the first of the Daughters of Light",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "GLO": {
- "gematria": [
- 46
- ],
- "meanings": [
- {
- "meaning": "things",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "geh-loh",
- "source": "EMPM"
- }
- ]
- },
- "GMDNM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GMICALZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "POWER, A POWERFUL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GMICALZO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "POWER, IN P. AND PRESENCE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GMNM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GNAY": {
- "gematria": [
- 124
- ],
- "meanings": [
- {
- "meaning": "to do, does",
- "source": "EMPM"
- },
- {
- "meaning": "DO, DOES",
- "source": "WE"
- },
- {
- "meaning": "DO, DOTH",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "geh-nay",
- "source": "EMPM"
- }
- ]
- },
- "GNETAAB": {
- "gematria": [
- 88,
- 94
- ],
- "meanings": [
- {
- "meaning": "government, only government",
- "source": "EMPM"
- },
- {
- "meaning": "government, only government",
- "source": "EMPM"
- },
- {
- "meaning": "GOVERNMENT, YOUR GOVERNMENTS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "gen-etah-ah-beh",
- "source": "EMPM"
- },
- {
- "pronounciation": "gen-etah-ah-beh",
- "source": "EMPM"
- }
- ]
- },
- "GNONP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GARNISH, I GARNISHED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GO (LE)": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Speaks",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GOHED": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ONE, EVERLASTING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GOHEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SAY, SAYS THE FIRST",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GOHIA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SAY, WE SAY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GOHO": {
- "gematria": [
- 69
- ],
- "meanings": [
- {
- "meaning": "to say, to speak",
- "source": "EMPM"
- },
- {
- "meaning": "SAY, SAYETH, SAYS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "goh-hoh",
- "source": "EMPM"
- }
- ]
- },
- "GOHOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SAY, SAYING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GOHOLOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "LIFT UP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GOHON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SAY, HAVE SPOKEN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GOHULIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SAY, IT IS SAID",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GOHUS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SAY, I SAY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GOMZIAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN RII",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER I,Y",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GONO": {
- "gematria": [
- 118
- ],
- "meanings": [
- {
- "meaning": "faith",
- "source": "EMPM"
- },
- {
- "meaning": "FAITH",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "goh-noh",
- "source": "EMPM"
- }
- ]
- },
- "GONSAG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GORS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "praise, praises",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GOSA": {
- "gematria": [
- 51
- ],
- "meanings": [
- {
- "meaning": "strange",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "goh-sah",
- "source": "EMPM"
- }
- ]
- },
- "GOSAA": {
- "gematria": [
- 57
- ],
- "meanings": [
- {
- "meaning": "a stranger",
- "source": "EMPM"
- },
- {
- "meaning": "STRANGER, A",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "goh-sah-ah",
- "source": "EMPM"
- }
- ]
- },
- "GR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Ancestors",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "GRAA": {
- "gematria": [
- 120
- ],
- "meanings": [
- {
- "meaning": "the Moon",
- "source": "EMPM"
- },
- {
- "meaning": "MOON",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "geh-rah-ah",
- "source": "EMPM"
- }
- ]
- },
- "GRAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "moonlight",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GRAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "lunar",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GRAMFA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "full moon",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GRAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ELDERS, ?VAR ON 'URAN'",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GRANSE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the cry of the Elders",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GRAPAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Moons (pl.)",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GRAPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER E",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GRONADOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The wrath of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "GROSB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "STING, A BITTER STING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "GZE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ONLY (Schuler)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "H": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Na-hath (H)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HAATH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WORKS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HABIORO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior MARS of AIR",
- "source": "WE"
- },
- {
- "meaning": "a Senior of AIR",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "Hah-bee-oh-roh",
- "source": "EMPM"
- }
- ]
- },
- "HAGONEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PRINCE OF HEPTARCHY",
- "source": "WE"
- },
- {
- "meaning": "SON OF SON OF LIGHT, SATURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HAMI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CREATURE, LIVING CREATURES",
- "source": "WE"
- },
- {
- "meaning": "CREATURES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HANDA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the seed of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "HANZVQ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the will of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "HAOZPI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior VENUS IN AIR TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HARDIMI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "AN ANGEL OF THE EARTH TABLET",
- "source": "WE"
- },
- {
- "meaning": "AN ANGEL OF ORO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HARG": {
- "gematria": [
- 115
- ],
- "meanings": [
- {
- "meaning": "to plant, to sow",
- "source": "EMPM"
- },
- {
- "meaning": "PLANT, HAS PLANTED",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "har-geh",
- "source": "EMPM"
- }
- ]
- },
- "HCOMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WATER NAME, TABLET OF UNION",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HCTGA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A GOD-NAME OF EARTH TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HECOA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SON OF LIGHT, MARS OR JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HEEOA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A SON OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HELECH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "IN OURS (?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HIPOTGA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior SATURN of AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HMAGL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel EARTH OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HNLRX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel FIRE OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HOATH": {
- "gematria": [
- 41,
- 47
- ],
- "meanings": [
- {
- "meaning": "true worshipper, devotee",
- "source": "EMPM"
- },
- {
- "meaning": "true worshipper, devotee",
- "source": "EMPM"
- },
- {
- "meaning": "WORSHIPER, TRUE",
- "source": "WE"
- },
- {
- "meaning": "WORSHIPER, THE TRUE",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "hoh-ah-teh",
- "source": "EMPM"
- },
- {
- "pronounciation": "hoh-ah-teh",
- "source": "EMPM"
- }
- ]
- },
- "HOL": {
- "gematria": [
- 39
- ],
- "meanings": [
- {
- "meaning": "to measure",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "hoh-el",
- "source": "EMPM"
- }
- ]
- },
- "HOLDO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GROANED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HOLQ": {
- "gematria": [
- 79
- ],
- "meanings": [
- {
- "meaning": "are measured",
- "source": "EMPM"
- },
- {
- "meaning": "MEASURETH",
- "source": "WE"
- },
- {
- "meaning": "MEASURE, IT IS MEASURED",
- "source": "WE"
- },
- {
- "meaning": "MEASURED",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "hoh-el-que",
- "source": "EMPM"
- }
- ]
- },
- "HOM": {
- "gematria": [
- 121
- ],
- "meanings": [
- {
- "meaning": "to live",
- "source": "EMPM"
- },
- {
- "meaning": "LIVE, LIVES (verb)",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "hoh-meh",
- "source": "EMPM"
- }
- ]
- },
- "HOMIL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "AGES, THE TRUE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HOMIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "AGE, WITH AGE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HOMTOH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "TRIUMPH, VAR ON 'HOM OD TOH'",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HONONOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Zodiacal King LEO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HOXMARCH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FEAR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HOXPOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Bringing fear",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "HTAAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HTDIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel WATER OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HTMORDA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior LUNA of AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HTNBR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HUBAIO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "LAMP, VAR ON HUBARO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HUBAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "LAMPS, WITH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HUBARO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "LAMPS, THE LANTERNS",
- "source": "WE"
- },
- {
- "meaning": "LAMPS, LIVING LAMPS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HUCACHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HUSEH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "HXGSD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel FIR E OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "I": {
- "gematria": [
- 60
- ],
- "meanings": [
- {
- "meaning": "is, is not",
- "source": "EMPM"
- },
- {
- "meaning": "(name of an angel, sol)",
- "source": ""
- },
- {
- "meaning": "Gon (I)",
- "source": "WE"
- },
- {
- "meaning": "IS",
- "source": "WE"
- },
- {
- "meaning": "SON OF LIGHT, SOL OR VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee",
- "source": "EMPM"
- },
- {
- "pronounciation": "Ee",
- "source": ""
- }
- ]
- },
- "IA": {
- "gematria": [
- 66
- ],
- "meanings": [
- {
- "meaning": "truth",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee-ah",
- "source": "EMPM"
- }
- ]
- },
- "IAAASD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross FIRE OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IABA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IABES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "LORD, SUPREME LIFE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IAD": {
- "gematria": [
- 70
- ],
- "meanings": [
- {
- "meaning": "a god, God",
- "source": "EMPM"
- },
- {
- "meaning": "God, the / our / your God, the Lord",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee-ah-doh",
- "source": "EMPM"
- }
- ]
- },
- "IADNAH": {
- "gematria": [
- 127
- ],
- "meanings": [
- {
- "meaning": "knowledge",
- "source": "EMPM"
- },
- {
- "meaning": "KNOWLEDGE, OF",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee-ah-deh-nah",
- "source": "EMPM"
- }
- ]
- },
- "IADNAMAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KNOWLEDGE, UNDEFILED K.",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IADOIASMOMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HIM THAT WAS,IS,AND SHALL BE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IADPIL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HIM, TO HIM",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IADS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the gods",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "IAHL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IAIADIX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HONOR, OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IAIAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CONCLUDE US",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IAIDA": {
- "gematria": [
- 136
- ],
- "meanings": [
- {
- "meaning": "the highest",
- "source": "EMPM"
- },
- {
- "meaning": "HIGHEST, THE",
- "source": "WE"
- },
- {
- "meaning": "HIGHEST, OF THE",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee-ah-ee-dah",
- "source": "EMPM"
- }
- ]
- },
- "IAIDON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GOD, THE ALL-POWERFUL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IAL": {
- "gematria": [
- 74
- ],
- "meanings": [
- {
- "meaning": "to consume",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee-all",
- "source": "EMPM"
- }
- ]
- },
- "IALPIRGAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FIRE, GOD-FLAMES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IALPON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BURN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IALPOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FLAMING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IALPRG": {
- "gematria": [
- 191
- ],
- "meanings": [
- {
- "meaning": "burning flames",
- "source": "EMPM"
- },
- {
- "meaning": "BURNING FLAME",
- "source": "WE"
- },
- {
- "meaning": "BURNINGS FLAMES",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee-al-par-geh",
- "source": "EMPM"
- }
- ]
- },
- "IALPRT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FLAME",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IAMHL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "I am the Daughter of Light (also the formal name: IAN)",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "IANA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "(name of an angel)",
- "source": "EMPM",
- "source2": "pg 25"
- },
- {
- "meaning": "A DAUGHTER OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "Ee-ah-nah",
- "source": "EMPM",
- "source2": "pg 25"
- }
- ]
- },
- "IANBA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IAO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "IAO",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "IAOD": {
- "gematria": [
- 100
- ],
- "meanings": [
- {
- "meaning": "the beginning",
- "source": "EMPM"
- },
- {
- "meaning": "BEGINNING",
- "source": "WE"
- },
- {
- "meaning": "BEGINNING, THE",
- "source": "WE"
- },
- {
- "meaning": "BEGINNING, THE B. OF",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee-ah-oh-deh",
- "source": "EMPM"
- }
- ]
- },
- "IAODAF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BEGINNING, IN THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IBAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A GOD-NAME OF AIR TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ICH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ELEVENTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ICHISGE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "AND ARE NOT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ICZHIHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KING OF EARTH TABLET (VAR)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ICZHIHAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ELEMENTAL KING OF EARTHICZHIHL KING OF EARTH TABLET (VAR)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IDLUGAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GIVE, IS GIVEN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IDOIGO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HE WHO SITS ON THE HOLY THRONE",
- "source": "WE"
- },
- {
- "meaning": "Sephirotic Cross AIR OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IEH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "merciful",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "IEHUSOZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MERCY, HIS MERCIES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SON OF LIGHT (Silver),",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IHEDVTHARH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the fixed stars as receivers of the one spread out against the sky",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "IHEHUDZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Childrenof the Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "IHEHVDETHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the fixed stars",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "IHEHVSCH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Ecstasy, also a formal noun; a name for a star: Augoeides",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "IIDPO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IIPO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IL": {
- "gematria": [
- 68
- ],
- "meanings": [
- {
- "meaning": "Aethyr",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee-el",
- "source": "EMPM"
- }
- ]
- },
- "ILEMESE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SON OF SON OF LIGHT, LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ILI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FIRST, IN THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ILMO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Angel or Essence of the Sun; heart of the Sun",
- "source": "WE",
- "source2": "Table of 12"
- }
- ],
- "pronounciations": []
- },
- "ILPIZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ILRO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Name from the tablet of 12",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ILS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THOU, O THOU",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IMUAMAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ACT TOWARDS US",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "INOAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BECOME, THEY ARE BECOME",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "INSI": {
- "gematria": [
- 177
- ],
- "meanings": [
- {
- "meaning": "to walk on, to tread",
- "source": "EMPM"
- },
- {
- "meaning": "WALKS",
- "source": "WE"
- },
- {
- "meaning": "WALK",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee-ness-ee",
- "source": "EMPM"
- }
- ]
- },
- "IOAESPM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "3RD MINISTER OF VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IOIAD": {
- "gematria": [
- 160
- ],
- "meanings": [
- {
- "meaning": "Eternal God",
- "source": "EMPM"
- },
- {
- "meaning": "HIM THAT LIVES FOREVER",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee-oh-ee-ah-deh",
- "source": "EMPM"
- }
- ]
- },
- "IP": {
- "gematria": [
- 69
- ],
- "meanings": [
- {
- "meaning": "not",
- "source": "EMPM"
- },
- {
- "meaning": "NOT",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee-peh",
- "source": "EMPM"
- }
- ]
- },
- "IPAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "IS NOT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IPAMIS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CAN NOT BE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IPURAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SHALL NOT SEE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IRGIL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HOW MANY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ISR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SON OF LIGHT, VENUS OR SOL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ISRO": {
- "gematria": [
- 197
- ],
- "meanings": [
- {
- "meaning": "promise",
- "source": "EMPM"
- },
- {
- "meaning": "PROMISE, THE",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ee-ess-roh",
- "source": "EMPM"
- }
- ]
- },
- "IUBANLADAEC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF AN ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IUBENLADECE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VAR OF IUBANLADAEC",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IUDRA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IVMD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CALL, IS CALLED",
- "source": "WE"
- },
- {
- "meaning": "CALL, IS CALLED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IXOMAXIP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KNOW, LET HER BE KNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IZAZAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FRAME, HAVE FRAMEDIZED DAUGHTER OF DAUGHTER OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IZINR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IZIXP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IZIZOP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VESSELS, FROM YOUR HIGHEST",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IZNR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "IZXP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "KAPENE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Therefore, the house is holy",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "L": {
- "gematria": [
- 8
- ],
- "meanings": [
- {
- "meaning": "first",
- "source": "EMPM"
- },
- {
- "meaning": "Ur (L)",
- "source": "WE"
- },
- {
- "meaning": "OF THE FIRST",
- "source": "WE"
- },
- {
- "meaning": "FIRST",
- "source": "WE"
- },
- {
- "meaning": "ONE",
- "source": "WE"
- },
- {
- "meaning": "THE FIRST",
- "source": "WE"
- },
- {
- "meaning": "ALL ONE.",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "el",
- "source": "EMPM"
- }
- ]
- },
- "LA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Of THE FIRST",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LABDGRE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "6TH MINISTER OF LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LABNIXP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN BAG",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LAF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- },
- {
- "meaning": "God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LAIAD": {
- "gematria": [
- 84
- ],
- "meanings": [
- {
- "meaning": "secrets of truth",
- "source": "EMPM"
- },
- {
- "meaning": "TRUTH, THE SECRETS OF",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "lah-ee-ah-deh",
- "source": "EMPM"
- }
- ]
- },
- "LAIDROM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior MARS of EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "except the first",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "first God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LANG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MINISTERING ANGELS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LANGED": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the first utterance",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LANSH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "POWER, IN POWER EXALTED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LAOAXRP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior LUNA of WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LAP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FOR",
- "source": "WE"
- },
- {
- "meaning": "FOR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LAPARIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZIM",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LARAG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NOR",
- "source": "WE"
- },
- {
- "meaning": "NEITHER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "RICH, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LASBEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF AN ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LASCO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "strong foundation",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LASDI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FEET, MY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LAUACON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LEA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LAVA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PRAY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LAVAVOTH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Zodiacal King ARIES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Abbreviation for Alt. Part in LIN; Angel of the East",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LAXDIZI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ALT. PART IN LIN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LAZDIXI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LIT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LBBNAAV": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "2ND MINISTER OF VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "phrase: ‘first,the Daughter of Light’",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LEA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SIXTEENTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LEAOC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LEAORIB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "4TH MINISTER OF SOL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LED": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "first, the Daughter of Light to the East",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LEENARB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "1ST MINISTER OF SOL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LEFA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "frist, the Daughter of Light visits the interior",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LEFE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "first, the Daughter of Light appears",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LEHUSAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LEHUSLACH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN, SEE LEHUSAN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SAME, THE SAME",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "presense of the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LENGES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the 22 nd Aethyr is not the fourth",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LEOC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LEOHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "First, the Daughter of Light in woe",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LEOZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "First, the Daughter of Light beholds the Son of Son of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LEPHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LESCO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "first, the Daughter of Light with 5",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LESGAMPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "first, the watery loins of the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LEVANAEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LEVITHMONG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BEASTS OF THE FIELD, FOR THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LEXARPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZAX",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LGAIOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior VENUS of WATER TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LHCTGA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior VENUS of EARTH TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FIRST - VAR ON 'ILI'",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LIALPRT": {
- "gematria": [
- 200
- ],
- "meanings": [
- {
- "meaning": "the First Glame",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "lee-al-par-teh",
- "source": "EMPM"
- }
- ]
- },
- "LIBA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SON OF SON OF LIGHT, MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LIGDISA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior SATURN of WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LIIANSA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior SAT of EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LIL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THE FIRST AIRE",
- "source": "WE"
- },
- {
- "meaning": "FIRST AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LILONON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BRANCHES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LIMLAL": {
- "gematria": [
- 180
- ],
- "meanings": [
- {
- "meaning": "treasure",
- "source": "EMPM"
- },
- {
- "meaning": "TREASURE, HIS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "lee-em-lah-leh",
- "source": "EMPM"
- }
- ]
- },
- "LIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "22ND AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LIT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FIFTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LIXIPSP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WARDEN OF AETHYR 'BAG'",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LLACZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross WATER OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LML": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "TREASURE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the, that",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "LN-NIA-O": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THE BEAST (Shueler?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LNANAEB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "2ND MINISTER OF SOL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FIRST, THE",
- "source": "WE"
- },
- {
- "meaning": "THE FIRST",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LOADOHI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KINGDOM, VAR ON 'LONDOH'",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LOAGAETH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SPEECH FROM GOD, VAR. 1",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LOE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "TWELFTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LOGAAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SPEECH FROM GOD, VAR. 3",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LOGAETH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SPEECH FROM GOD, VAR. 2",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LOGAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SPEECH FROM GOD, VAR. 4",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LOH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "beams",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LOHOLO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SHINES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LOLCIS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BUCKLERS (SHIELDS)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LONCHO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FALL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LONDOH": {
- "gematria": [
- 123
- ],
- "meanings": [
- {
- "meaning": "kingdoms",
- "source": "EMPM"
- },
- {
- "meaning": "KINGDOMS",
- "source": "WE"
- },
- {
- "meaning": "KINGDOMSLONSA POWER",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "loh-en-doh",
- "source": "EMPM"
- }
- ]
- },
- "LONSA": {
- "gematria": [
- 101
- ],
- "meanings": [
- {
- "meaning": "everyone",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "loh-en-sah",
- "source": "EMPM"
- }
- ]
- },
- "LONSHI": {
- "gematria": [
- 156
- ],
- "meanings": [
- {
- "meaning": "power",
- "source": "EMPM"
- },
- {
- "meaning": "POWER, THE",
- "source": "WE"
- },
- {
- "meaning": "POWER",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "loh-en-ess-hee",
- "source": "EMPM"
- }
- ]
- },
- "LONSHIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "POWER, THEIR POWERS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LORSLQ": {
- "gematria": [
- 193
- ],
- "meanings": [
- {
- "meaning": "flowers",
- "source": "EMPM"
- },
- {
- "meaning": "FLOWERS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "loh-ress-el-que",
- "source": "EMPM"
- }
- ]
- },
- "LRASD": {
- "gematria": [
- 125
- ],
- "meanings": [
- {
- "meaning": "to dispose of, to eliminate",
- "source": "EMPM"
- },
- {
- "meaning": "DISPOSE, TO",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "el-rah-ess-deh",
- "source": "EMPM"
- }
- ]
- },
- "LRING": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "STIR UP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LRL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "‘first changing one’; God; movement; work",
- "source": "WE",
- "source2": "Table of 12"
- },
- {
- "meaning": "‘first changing one’; God; movement; work",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "LRS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "'to charge' (either as in a talisman or as in marching forward), 'to rid or banish' and 'to change or alter'",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "LSEANN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The Ecliptic",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "LSRAHPM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior MARS of WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LSSN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "constellations, lords",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "LUACH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PRAISING ANGELS, VAR. 2",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LUAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PRAISING ANGELS, VAR. 1",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LUCAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NORTH, IN THE NORTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LUCIFTIAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BRIGHTNESS, THE",
- "source": "WE"
- },
- {
- "meaning": "BRIGHTNESS, ORNAMENTS OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LUIAHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HONOR, A SON OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LULO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "TARTAR OR MOTHER OF VINEGAR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LURFANDO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LUSD": {
- "gematria": [
- 89
- ],
- "meanings": [
- {
- "meaning": "feet",
- "source": "EMPM"
- },
- {
- "meaning": "FEET, YOUR",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "luh-ess-deh",
- "source": "EMPM"
- }
- ]
- },
- "LUSDA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FEET, THEIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LUSDAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FEET, WITH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "LUSEROTH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "lutudah": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "thrice great",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LVCE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the North Star",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LVMRAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "all named to the East are the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "LZINOPO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior LUNA of EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "M": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Tal (M)",
- "source": "WE"
- },
- {
- "meaning": "EXCEPT",
- "source": "WE"
- },
- {
- "meaning": "OF (Schuler)",
- "source": "WE"
- },
- {
- "meaning": "except, 9",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "MA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "possess",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MAAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "hidden god",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MAASI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "laid up (stored)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MABBERAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MABETH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "expanse, the",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MABZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "coat, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MACOM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "encompass",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MAD": {
- "gematria": [
- 100
- ],
- "meanings": [
- {
- "meaning": "god, your god",
- "source": "EMPM"
- },
- {
- "meaning": "god, your",
- "source": "WE"
- },
- {
- "meaning": "god, of",
- "source": "WE"
- },
- {
- "meaning": "god, your",
- "source": "WE"
- },
- {
- "meaning": "god, of your",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "mah-deh",
- "source": "EMPM"
- }
- ]
- },
- "MADIMI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DAUGHTER OF DAUGHTER OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MADIMIEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MADOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "God’s creation",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MADRIAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "heaven, you heavens",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MADRID": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "iniquity, her",
- "source": "WE"
- },
- {
- "meaning": "iniquities",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MADRIIAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "heaven, you heavens",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MADZILODARP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GOD OF STRETCH- FORTH- AND- CONQU 327",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MAGL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel EARTH OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MAGM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "In Darkness",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MAHAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the third is in darkness",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MAHORELA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "dark heavens (crowley)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MAIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "continuance",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MAL": {
- "gematria": [
- 104
- ],
- "meanings": [
- {
- "meaning": "arrow",
- "source": "EMPM"
- },
- {
- "meaning": "Shortened spelling of the Enochian letter P, 8",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "mah-el",
- "source": "EMPM"
- }
- ]
- },
- "MALADI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross EARTH OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MALGM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MALPIRGI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "fires of life and increase",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MALPRG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "fire, through-thrusting",
- "source": "WE"
- },
- {
- "meaning": "fiery darts",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MALS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER P",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "root of 'in the mind' or ‘subtle body’",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "MANCH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "in the mind of God/Universal Mind",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MANGET": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "descended of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MANIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mind, in the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MANO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the soul of humanity",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MAOFFAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "measure, not to be measured",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MAPM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 9639,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MAPSAMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL'S NAME, 'TELL THEM'",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Magickal Childe",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MARA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Son of Light with the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MARADON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Son of Light unites with the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MARB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "according",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MARLAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Son of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MARS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Son of Light is the fourth",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MARTIBAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Magickal Childe is the sacrifice unto the higher self",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MARUNE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Son of Light joins the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MATA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "millenia",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MATB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "thousand, a",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MATHULA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZAA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MATORB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "echoing (acc. to Laycock)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "of the dissolution",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MAZ": {
- "gematria": [
- 99,
- 105
- ],
- "meanings": [
- {
- "meaning": "appearance",
- "source": "EMPM"
- },
- {
- "meaning": "appearance",
- "source": "EMPM"
- },
- {
- "meaning": "SIXTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "mah-zod",
- "source": "EMPM"
- },
- {
- "pronounciation": "mah-zod",
- "source": "EMPM"
- }
- ]
- },
- "ME": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "(name of an angel)",
- "source": "EMPM",
- "source2": "pg 25"
- },
- {
- "meaning": "DAUGHTER OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "Meh",
- "source": "EMPM",
- "source2": "pg 25"
- }
- ]
- },
- "MECASMAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mighty or powerful soul; highest soul; highest heaven",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MED": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER O",
- "source": "WE"
- },
- {
- "meaning": "the star of five",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MEL-": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "F to speedily encounter (schuler)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MERIFRI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "angel",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MI": {
- "gematria": [
- 150
- ],
- "meanings": [
- {
- "meaning": "power",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "mee",
- "source": "EMPM"
- }
- ]
- },
- "MIAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "continuance",
- "source": "WE"
- },
- {
- "meaning": "continuance",
- "source": "WE"
- },
- {
- "meaning": "continuance, long cont.",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MIAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 3663,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MICALP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mightier",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MICALZO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "power, in power",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MICAOLI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mighty",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MICAOLZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mighty",
- "source": "WE"
- },
- {
- "meaning": "mighty",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MICES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Countenance of the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MICMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "behold",
- "source": "WE"
- },
- {
- "meaning": "behold",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MIINOAG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "corner, the corners",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MIKETH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "wisdom",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MINODAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "one who is cornered",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "torment, a",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MIRC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "upon",
- "source": "WE"
- },
- {
- "meaning": "upon",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MIRZIND": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN UTI",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MLU": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "surge, outpouring",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MOLAP": {
- "gematria": [
- 143
- ],
- "meanings": [
- {
- "meaning": "men",
- "source": "EMPM"
- },
- {
- "meaning": "men, of",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "moh-lah-peh",
- "source": "EMPM"
- }
- ]
- },
- "MOLPAND": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ICH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MOLUI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "surges",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MOM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "moss",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MOMAO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "crown, the crownsMOMAR crown, to crown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MONASCI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "name, the great name",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MONONS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "heart, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MOOOAH": {
- "gematria": [
- 187
- ],
- "meanings": [
- {
- "meaning": "it rejoices me",
- "source": "EMPM"
- },
- {
- "meaning": "it repenteth me",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "moh-oh-oh-ah",
- "source": "EMPM"
- }
- ]
- },
- "MOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A GOD-NAME OF EARTH TABLET",
- "source": "WE"
- },
- {
- "meaning": "DIAL HCTGA GOD-NAMES OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MOREORGRAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF AN ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MOROH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the appearance of the 9 woes",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "MORVORGRAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VAR OF MOREORGRAN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MOSPLEH": {
- "gematria": [
- 155
- ],
- "meanings": [
- {
- "meaning": "horns",
- "source": "EMPM"
- },
- {
- "meaning": "horn, the horns",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "moh-seh-pel-eh-heh",
- "source": "EMPM"
- }
- ]
- },
- "MOZ": {
- "gematria": [
- 123,
- 129
- ],
- "meanings": [
- {
- "meaning": "joy",
- "source": "EMPM"
- },
- {
- "meaning": "joy",
- "source": "EMPM"
- },
- {
- "meaning": "joy",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "moh-zod",
- "source": "EMPM"
- },
- {
- "pronounciation": "moh-zod",
- "source": "EMPM"
- }
- ]
- },
- "MOZOD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "joy of god",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A GOD-NAME OF WATER TABLET",
- "source": "WE"
- },
- {
- "meaning": "ARSL GOD-NAMES OF WATER TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MSAP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MSMAP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MURIFRI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "angel",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "MUZPA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "These are with Joy",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "N": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Drun (N)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER H",
- "source": "WE"
- },
- {
- "meaning": "LORD OF HOSTS, TRINITY",
- "source": "WE"
- },
- {
- "meaning": "(also, the formal name NA)",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NA-": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HATH ENOCHIAN LETTER H",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NAB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The Infinite God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NABAOMI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZEN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NACO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NACRO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "renewal or resurrection",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Holy Spirit",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NADO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "fiery God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NAGEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Lord of Hosts is self-begotten",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "glorious",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NAHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Glory of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NAI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NALVAGE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF AN ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NANAEEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "POWER, MY POWER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NANBA": {
- "gematria": [
- 117
- ],
- "meanings": [
- {
- "meaning": "thorns",
- "source": "EMPM"
- },
- {
- "meaning": "THORNS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "nah-en-beh",
- "source": "EMPM"
- }
- ]
- },
- "NANTA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "EARTH NAME, TABLET OF UNION",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NAOCO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NAP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "sword",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NAPEA": {
- "gematria": [
- 81
- ],
- "meanings": [
- {
- "meaning": "two-edged sword",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "nah-peh-ah",
- "source": "EMPM"
- }
- ]
- },
- "NAPEAI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SWORD, O YE SWORDS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NAPTA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SWORD, WITH TWO-EDGED SWORDS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NASMT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NAT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Lord",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Wrath of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NAXT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The Ruler of the Earth",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NAZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "pillars",
- "source": "WE"
- },
- {
- "meaning": "pillars",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NAZPS": {
- "gematria": [
- 75,
- 81
- ],
- "meanings": [
- {
- "meaning": "a sword",
- "source": "EMPM"
- },
- {
- "meaning": "a sword",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "nah-zod-pess",
- "source": "EMPM"
- },
- {
- "pronounciation": "nah-zod-pess",
- "source": "EMPM"
- }
- ]
- },
- "NAZPSAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "sword",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NBOZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel AIR OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NDAZN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NDZN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HOLY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NEC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "holiness",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NECRA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "beginning with the Tree-of-Life",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NEG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Holy",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "NEH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "holy God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NEICIAB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "5TH MINISTER OF SOL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NELAPR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross WATER OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NENNI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "YOU HAVE BECOME (Crowley)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NEOTPTA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "2ND MINISTER OF MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NEPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "holiness",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NETAAB": {
- "gematria": [
- 80,
- 86
- ],
- "meanings": [
- {
- "meaning": "government",
- "source": "EMPM"
- },
- {
- "meaning": "government",
- "source": "EMPM"
- },
- {
- "meaning": "government",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "neh-tah-ah-beh",
- "source": "EMPM"
- },
- {
- "pronounciation": "neh-tah-ah-beh",
- "source": "EMPM"
- }
- ]
- },
- "NGRSATEM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NHDD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NHODD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 28,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NIA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "24TH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NIDALI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "noise, your noises",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NIGRANA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN DES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NIIS": {
- "gematria": [
- 177
- ],
- "meanings": [
- {
- "meaning": "to come",
- "source": "EMPM"
- },
- {
- "meaning": "come ye",
- "source": "WE"
- },
- {
- "meaning": "come",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "nee-ee-ess",
- "source": "EMPM"
- }
- ]
- },
- "NIISO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "come away",
- "source": "WE"
- },
- {
- "meaning": "come away",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NIMB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "season",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NIZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "’28 of them’ or ‘they, the 28’",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NLINZVB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "2ND MINISTER OF VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NLLRLNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "6TH MINISTER OF VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NLRX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel FIRE OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "root of ‘interiority: within, inside, self-hood', power, ‘my power', thorns, the 'Earth Name, Tablet of Union' (NANAEEL)",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "NO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the hexagram",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NOALMR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOALN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BECOME, MAY BE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BECOME, YOU ARE BECOME",
- "source": "WE"
- },
- {
- "meaning": "BECOME, THUS YOU ARE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BECOME, IS BECOME",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BECOME",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOASMI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BECOME, LET THEM BECOME",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOBLOH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PALMS, THE (OF HANDS)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOCAMAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LIT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOCIABI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN OXO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOCNC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel EARTH OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOCO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SERVANT, THE",
- "source": "WE"
- },
- {
- "meaning": "SERVANT, THE",
- "source": "WE"
- },
- {
- "meaning": "MINISTER, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOGAHEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOGES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Hexagram is not the fourth",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NOIB": {
- "gematria": [
- 145
- ],
- "meanings": [
- {
- "meaning": "yes, affirmation",
- "source": "EMPM"
- },
- {
- "meaning": "YEA",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "noh-ee-beh",
- "source": "EMPM"
- }
- ]
- },
- "NOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the first hexagram",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NOMIG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "EVEN AS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NONCA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "UNTO YOU",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NONCF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "YOU",
- "source": "WE"
- },
- {
- "meaning": "YOU",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NONCI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "YOU, O YOU",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NONCP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "YOU, FOR YOU",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NONNIS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "You come away",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "NOONMAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "5TH MINISTER OF MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOQOL": {
- "gematria": [
- 158
- ],
- "meanings": [
- {
- "meaning": "servants",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "noh-quo-leh",
- "source": "EMPM"
- }
- ]
- },
- "NOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SONS, YOUNOR SONS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOROMI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SONS, O YOU SONS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NORZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SIX",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOSTOAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "IT WAS (?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NOT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "inside",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "NOTHOA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MIDST, IN THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NPHRA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel WATER OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NPNT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NPRNT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NRPCRRB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "5TH MINISTER OF MERCURY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NRRCPRN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "5TH MINISTER OF LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NRSOGOO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "4TH MINISTER OF LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NRZFM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "NUAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CONTINUANCE, VAR ON 'MIAM'?",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "O": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Med (O)",
- "source": "WE"
- },
- {
- "meaning": "5, this",
- "source": "WE"
- },
- {
- "meaning": "the Holy Pentagram",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OADO": {
- "gematria": [
- 70
- ],
- "meanings": [
- {
- "meaning": "to wave",
- "source": "EMPM"
- },
- {
- "meaning": "WEAVE",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-ah-doh",
- "source": "EMPM"
- }
- ]
- },
- "OADRIAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HEAVENS, THE LOWER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OAI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "AMONG, VAR ON AAI",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OAID": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GOD, OF GOD",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OALI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PLACE;PUT, I HAVE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OALO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "I am",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "OANIO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MOMENT, OF A",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OANR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Angel, companion of Roan. Also Oacnr.",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "(entry not defined)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OBAUA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OBELISON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PLEASANT DELIVERER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OBELISONG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "AS PLEASANT DELIVERERS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OBGOTA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OBL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "garland",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "OBLOC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GARLAND, A",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OBOLEH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GARMENTS, YOUR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OBVAORS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN UTI",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OBZa": {
- "gematria": [
- 44,
- 50
- ],
- "meanings": [
- {
- "meaning": "one half, dual",
- "source": "EMPM"
- },
- {
- "meaning": "one half, dual",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-beh-zodah",
- "source": "EMPM"
- },
- {
- "pronounciation": "oh-beh-zodah",
- "source": "EMPM"
- }
- ]
- },
- "OBZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HALF, A",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OCANM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OCCODON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LIL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OCNC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel EARTH OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OCNM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "AND",
- "source": "WE"
- },
- {
- "meaning": "NOR (AND)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ODDIORG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZIP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ODIDOS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "she who awakens the eld of the king",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ODO": {
- "gematria": [
- 64
- ],
- "meanings": [
- {
- "meaning": "to open",
- "source": "EMPM"
- },
- {
- "meaning": "OPEN",
- "source": "WE"
- },
- {
- "meaning": "OPEN",
- "source": "WE"
- },
- {
- "meaning": "OPENS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-doh",
- "source": "EMPM"
- }
- ]
- },
- "ODRAXTI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN RII",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OECRIMI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SINGING PRAISES",
- "source": "WE"
- },
- {
- "meaning": "SINGING PRAISES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OEEOOEZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "5TH MINISTER OF VENUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OEMATENODAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "at the start of the millennia, the angel of death",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OESNGLE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "1ST MINISTER OF LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OFAFAFE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VIAL, VAR ON EFAFAFE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OFEKUFA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ELEVATED TO (Crowley)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OGES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "with the 4th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OGHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the fourth begotten Son of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OGI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "‘with this’",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "OH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Root of OHIO; woe",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "in or with woe",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "woe of the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OHELOKA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DUKE, (Crowley's trans.)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OHIO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WOE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OHOOOHAATAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GREAT ELEMENTAL KING OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OHORELA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "LAW, I MADE A LAW",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THIS",
- "source": "WE"
- },
- {
- "meaning": "THIS",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "OIAD": {
- "gematria": [
- 100
- ],
- "meanings": [
- {
- "meaning": "god, the just",
- "source": "EMPM"
- },
- {
- "meaning": "GOD, OF",
- "source": "WE"
- },
- {
- "meaning": "JUST, OF THE JUST",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-ee-ah-deh",
- "source": "EMPM"
- }
- ]
- },
- "OIAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WAS, IS, AND SHALL BE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OIIIT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OIP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A GOD-NAME OF FIRE TABLET",
- "source": "WE"
- },
- {
- "meaning": "TEAA PDOCE GOD-NAMES OF FIRE TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OIT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THIS IS; THIS IS IT, THAT",
- "source": "WE"
- },
- {
- "meaning": "THIS IS; THIS IS IT, THAT",
- "source": "WE",
- "source2": "Table of 12"
- },
- {
- "meaning": "THIS IS; THIS IS IT, THAT, God",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "OL": {
- "gematria": [
- 38
- ],
- "meanings": [
- {
- "meaning": "to make, maker",
- "source": "EMPM"
- },
- {
- "meaning": "I (poss. \"The Maker\"- see OLN,",
- "source": "WE"
- },
- {
- "meaning": "IN THE 24TH PART",
- "source": "WE"
- },
- {
- "meaning": "(NONE SHOWN)",
- "source": "WE"
- },
- {
- "meaning": 24,
- "source": "WE"
- },
- {
- "meaning": "MAKE, I MADE",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-el",
- "source": "EMPM"
- }
- ]
- },
- "OLAAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross EARTH OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OLAHO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FOR THE SECOND TIME (Crowley)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OLANI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FOR TWO TIMES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OLLAR": {
- "gematria": [
- 152
- ],
- "meanings": [
- {
- "meaning": "man",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-leh-lar",
- "source": "EMPM"
- }
- ]
- },
- "OLLOG": {
- "gematria": [
- 84
- ],
- "meanings": [
- {
- "meaning": "men",
- "source": "EMPM"
- },
- {
- "meaning": "MEN",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-el-loh-geh",
- "source": "EMPM"
- }
- ]
- },
- "OLLOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MAN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OLN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MADE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OLNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "created within",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OLOAG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OLONTAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "man's twin star",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OLORA": {
- "gematria": [
- 174
- ],
- "meanings": [
- {
- "meaning": "man",
- "source": "EMPM"
- },
- {
- "meaning": "MAN, OF MAN",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-loh-rah",
- "source": "EMPM"
- }
- ]
- },
- "OLPAGED": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Zodiacal King SCORPIO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OLPIRT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OLPRT": {
- "gematria": [
- 150,
- 156
- ],
- "meanings": [
- {
- "meaning": "light",
- "source": "EMPM"
- },
- {
- "meaning": "light",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-el-par-teh",
- "source": "EMPM"
- },
- {
- "pronounciation": "oh-el-par-teh",
- "source": "EMPM"
- }
- ]
- },
- "OM": {
- "gematria": [
- 120
- ],
- "meanings": [
- {
- "meaning": "to know, understand",
- "source": "EMPM"
- },
- {
- "meaning": "KNOW",
- "source": "WE"
- },
- {
- "meaning": "UNDERSTAND",
- "source": "WE"
- },
- {
- "meaning": "THE UNDERSTANDING",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-meh",
- "source": "EMPM"
- }
- ]
- },
- "OMA": {
- "gematria": [
- 126
- ],
- "meanings": [
- {
- "meaning": "understanding",
- "source": "EMPM"
- },
- {
- "meaning": "UNDERSTANDING",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-mah",
- "source": "EMPM"
- }
- ]
- },
- "OMAGG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OMAGRAP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN POP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OMAOAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAMES, THEIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OMAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KNOW, KNOWEST",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OMEBB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross WATER OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OMGG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OMICAOLZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MIGHTY, BE MIGHTY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OMLO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KNOWLEDGE OF THE FIRST",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OMP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "UNDERSTANDING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OMSOMNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MADE, BUILT",
- "source": "WE"
- },
- {
- "meaning": "MADE, BUILT",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- },
- {
- "meaning": "Made, built",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "ONEDON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "completion",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ONEDPON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "4TH MINISTER OF MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ONIXDAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Proclaiming",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ONIZIMP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN TOR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "onphe": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "begotten",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ONR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Motivation, inspiration—‘inertia’",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "OOANAMB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN UTA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OOANOAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "EYES, IN THEIR EYES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OOAONA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "EYES",
- "source": "WE"
- },
- {
- "meaning": "EYES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OODPZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OOE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "‘archetypal man’; ‘makes man’; ‘making man’",
- "source": "WE",
- "source2": "Table of 12"
- },
- {
- "meaning": "‘archetypal man’; ‘makes man’; ‘making man’",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "OOGE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CHAMBER, FOR THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OOGOSRB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "4TH MINISTER OF BLISDON",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OOGOSRS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "4TH MINISTER OF MERCURY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OOPZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 22,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OPAMN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OPANA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OPHES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the 22 by 4",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OPHIDE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "coitus, of riding, rides",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OPMACAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN DEO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OPMN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OPMNIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OPNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OQ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "EXCEPT IN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER F",
- "source": "WE"
- },
- {
- "meaning": "[visit, visit us]—appear, ‘appear before us’",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "ORA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "third,the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ORCANIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN NIA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ORCANOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the mighty manifest",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ORDA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "will indwell",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ORDAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "manifest",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ORH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF A SPIRIT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ORIPAT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "life shall not form",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ORLO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Initiation, Visitation; n.Initiate, visit; v.",
- "source": "WE",
- "source2": "Table of 12"
- }
- ],
- "pronounciations": []
- },
- "ORMATENODAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "at the start of the millennia, the angel of death",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ORMN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF EARTHORO A GOD-NAME OF AIR TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ORNO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "divine visitation",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ORO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "[the] third man",
- "source": "WE",
- "source2": "Liber Loagaeth"
- },
- {
- "meaning": "IBAH AOZPI GOD-NAMES OF AIR TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OROCH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "UNDER YOU",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OROCHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "UNDERNEATH YOU",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OROPHAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "[I will] give in secret",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ORPANIB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZAA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ORPMN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ORRI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "STONE, BARREN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ORS": {
- "gematria": [
- 137
- ],
- "meanings": [
- {
- "meaning": "darkness",
- "source": "EMPM"
- },
- {
- "meaning": "DARKNESS, WITH",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-ress",
- "source": "EMPM"
- }
- ]
- },
- "ORSBA": {
- "gematria": [
- 148
- ],
- "meanings": [
- {
- "meaning": "drunken, intoxicated",
- "source": "EMPM"
- },
- {
- "meaning": "DRUNKEN",
- "source": "WE"
- },
- {
- "meaning": "DRUNKEN",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-ress-bah",
- "source": "EMPM"
- }
- ]
- },
- "ORSCA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BUILDINGS, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ORSCOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DRYNESS, WITH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ORTH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER F",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 12,
- "source": "WE"
- },
- {
- "meaning": 12,
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "OSCH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "are 12 (12 are); let there be 12",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OSF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DISCORD",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OSHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The 12 Lights",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OSSNGLE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FIRST MINISTER OF HAGONEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OSSON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the 12 reign [over]",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OTHIL": {
- "gematria": [
- 102,
- 108
- ],
- "meanings": [
- {
- "meaning": "seat",
- "source": "EMPM"
- },
- {
- "meaning": "seat",
- "source": "EMPM"
- },
- {
- "meaning": "SEAT, THE SEATS",
- "source": "WE"
- },
- {
- "meaning": "SEAT, I HAVE SEATED",
- "source": "WE"
- },
- {
- "meaning": "SEAT, THE SEATS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-teh-hee-el",
- "source": "EMPM"
- },
- {
- "pronounciation": "oh-teh-hee-el",
- "source": "EMPM"
- }
- ]
- },
- "OTOI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OTROI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OUCHO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CONFOUND, LET IT CONFOUND",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OVOARS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CENTER, TO THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OVOF": {
- "gematria": [
- 133
- ],
- "meanings": [
- {
- "meaning": "to be magnified",
- "source": "EMPM"
- },
- {
- "meaning": "MAGNIFY, MAY BE MAGNIFIED",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "oh-voh-feh",
- "source": "EMPM"
- }
- ]
- },
- "OX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 26,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OXAMAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the 26 comprise the all",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "OXEX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VOMIT OUT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OXIAYAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SEAT, THE MIGHTY SEAT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OXLOPAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN BAG",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OXO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FIFTEENTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OXOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OYAUB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OYUB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OZAZM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MAKE ME",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OZAZMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MAKE US",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OZIDAIA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LIN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OZIEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HANDS, MY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OZOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HEADS, THEIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "OZONGON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WINDS, MANIFOLD",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "P": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Mals (P)",
- "source": "WE"
- },
- {
- "meaning": 8,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "keep",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PAAOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "remain",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PAAOXT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "remain, let it remain",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PAAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PACADABAAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "profess the truth",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PACADUASAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PACAPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PACASNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ARN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PACHAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "being of the holy trinity",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PACO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PACOC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PADGZE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "justice from divine power without defect",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PAEB": {
- "gematria": [
- 30
- ],
- "meanings": [
- {
- "meaning": "oak",
- "source": "EMPM"
- },
- {
- "meaning": "oak, an",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "pah-eh-beh",
- "source": "EMPM"
- }
- ]
- },
- "PAGE": {
- "gematria": [
- 33
- ],
- "meanings": [
- {
- "meaning": "to rest",
- "source": "EMPM"
- },
- {
- "meaning": "rest",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "pah-geh",
- "source": "EMPM"
- }
- ]
- },
- "PAGE-": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "IP rest not",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Ogdoad (eightfold star)",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PAID": {
- "gematria": [
- 79
- ],
- "meanings": [
- {
- "meaning": "always",
- "source": "EMPM"
- },
- {
- "meaning": "always",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "pah-ee-deh",
- "source": "EMPM"
- }
- ]
- },
- "PAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER X",
- "source": "WE"
- },
- {
- "meaning": "dissolution",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PALA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "TWO (SEPARATED), PAIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PALAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross WATER OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PALCE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "All is in the One",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PALCO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PALGEH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "thou art separated",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PALI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PALME": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "dissolves into Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PALMES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "dissolution into the Daughter of Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PALO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "dissolves into man",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PALSE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "raging fire",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PAM": {
- "gematria": [
- 105
- ],
- "meanings": [
- {
- "meaning": "beginning",
- "source": "EMPM"
- },
- {
- "meaning": "8 unto into 9",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "pah-em",
- "source": "EMPM"
- }
- ]
- },
- "PAMBT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "unto me",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PAMPHES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Babalon astride the Beast",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PAMPHICA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "infernal mother",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PAMPHICAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mean.unk. contemptuous tone",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Fire pouring down",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PANDAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "a thousand angels keep holy",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PANGEPI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "She who is NOT, pouring down",
- "source": "WE",
- "source2": "Liber Loagaeth"
- },
- {
- "meaning": "She who is NOT, pouring down",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PANLI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PANOSCH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "there are 12 pouring down",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PANPIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "pouring down",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PAOC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF AIRPAOMBD members, her (poss.\"limbs\"?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PAPBOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "remember, to this remembrance",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PAPHRES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "praising the Lord of Hosts in rememberance",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PAPNOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "to this remembrance (alt.sp.)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "in them",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PARACH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "equal",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PARACLEDA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "wedding, for a",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PARADIAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "dwellings, living",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PARADIZ": {
- "gematria": [
- 194
- ],
- "meanings": [
- {
- "meaning": "a virgin",
- "source": "EMPM"
- },
- {
- "meaning": "virgins",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "pah-rah-dee-zod",
- "source": "EMPM"
- }
- ]
- },
- "PARAOAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "part in lin",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PARM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "run",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PARMGI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "run, let it run",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PARNIX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the daughters reside in the 4 th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PARSA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "with the Son of Son of Light in the 4 th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PARSODAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Son of Son of Light (Mercury) in the 4 th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PART": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "also in them",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PARZIBA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "part in chr",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PASBS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "daughters, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PASCOMB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LIL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PASDAES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "profess the truth",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PASHS": {
- "gematria": [
- 30
- ],
- "meanings": [
- {
- "meaning": "children",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "pah-seh-ess",
- "source": "EMPM"
- }
- ]
- },
- "PASMT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PATAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PATRALX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ROCK",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PAULACARP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF AN EVIL SPIRIT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "keep the one",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PAZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FOURTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 33,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PDOCE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A GOD-NAME OF FIRE TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PE, ENOCHIAN LETTER 'B'",
- "source": "WE"
- },
- {
- "meaning": "The eight Daughters of Light",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "PELE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HE WHO WORKS WONDERS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PELEH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PENGON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the voice of the eight Daughters of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PEOAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 69636,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PERAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GARNISH, ARE GARNISHED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PERIPSAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HEAVENS, WITH THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PERIPSOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HEAVENS, OF THE",
- "source": "WE"
- },
- {
- "meaning": "HEAVENS, IN THE BRIGHTNESS OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PHAMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "I WILL GIVE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PHAMAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GIVE, VAR ON 'PHAMA'",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PHANAEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF AN ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PHAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "surrender",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the eight Daughters of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PHRA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel WATER OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PLACE",
- "source": "WE"
- },
- {
- "meaning": "SHEPIAD YOUR GOD (alt.sp.)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PIADPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "JAWS, IN THE DEPTHS OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PIAMOS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "RIGHTEOUSNESS, OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PIAP": {
- "gematria": [
- 84
- ],
- "meanings": [
- {
- "meaning": "balance, scale",
- "source": "EMPM"
- },
- {
- "meaning": "BALANCE, THE",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "pee-ah-peh",
- "source": "EMPM"
- }
- ]
- },
- "PIBLIAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PLACES OF COMFORT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PIDIAI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MARBLE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PILAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MOREOVER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PILD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CONTINUALLY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PILZIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FIRMAMENT OF WATERS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PINZU-": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PIR": {
- "gematria": [
- 169
- ],
- "meanings": [
- {
- "meaning": "bright",
- "source": "EMPM"
- },
- {
- "meaning": "HOLY ONES",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "pee-ar",
- "source": "EMPM"
- }
- ]
- },
- "PIRIPSON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HEAVEN, THE THIRD",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "partakers, ‘as many’",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "PLAPLI": {
- "gematria": [
- 100
- ],
- "meanings": [
- {
- "meaning": "users, partakers",
- "source": "EMPM"
- },
- {
- "meaning": "PARTAKERS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "peh-lah-peh-lee",
- "source": "EMPM"
- }
- ]
- },
- "PLIGNASE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The eternal cry",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PLOSI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "AS MANY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PMOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PMZOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "POAMAL": {
- "gematria": [
- 149
- ],
- "meanings": [
- {
- "meaning": "palace",
- "source": "EMPM"
- },
- {
- "meaning": "PALACE, OF YOUR",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "poh-ah-mal",
- "source": "EMPM"
- }
- ]
- },
- "POCISNI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN BAG",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "POCNC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel EARTH OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "POHO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "eightfold law",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "POILP": {
- "gematria": [
- 116
- ],
- "meanings": [
- {
- "meaning": "to be divided",
- "source": "EMPM"
- },
- {
- "meaning": "DIVIDE, ARE DIVIDED",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "poh-ee-el-pel",
- "source": "EMPM"
- }
- ]
- },
- "POLA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "TWO (TOGETHER), PAIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PON": {
- "gematria": [
- 89
- ],
- "meanings": [
- {
- "meaning": "to destroy",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "poh-en",
- "source": "EMPM"
- }
- ]
- },
- "PONODOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ICH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "POP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NINTEENTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "POPHAND": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN DES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PORTEX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "separate sun of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "POTHNIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN PAZ",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PPSAC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PRAC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "dwelling in",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PRAF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "dwell",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PRAGMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "dwell (?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PRAP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "balance",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PRAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "unite",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PRDZAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "diminish",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PRES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "praise",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "PRGE": {
- "gematria": [
- 127
- ],
- "meanings": [
- {
- "meaning": "fire",
- "source": "EMPM"
- },
- {
- "meaning": "fire, with the fire",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "par-geh",
- "source": "EMPM"
- }
- ]
- },
- "PRIAZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "those",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PRIAZI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "those, with those",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PRISTAC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZID",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "cubed",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "PSAC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PSEA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THE WAY (Schuler)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PUGO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "AS UNTO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PUIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SICKLES, SHARPPURGEL FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "PZIZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Archangel FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "Q": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Ger (Q)",
- "source": "WE"
- },
- {
- "meaning": "OR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "Q-": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "COCASB TIME, THE CONTENTS OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "QAA": {
- "gematria": [
- 52
- ],
- "meanings": [
- {
- "meaning": "creation",
- "source": "EMPM"
- },
- {
- "meaning": "GARMENTS, YOUR",
- "source": "WE"
- },
- {
- "meaning": "CREATION, OF YOUR",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "quah-ah",
- "source": "EMPM"
- }
- ]
- },
- "QAADAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CREATOR, OF THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "QAAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CREATOR, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "QAAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CREATION, OF YOUR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "QAANIS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "OLIVES (alt.sp.)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "QAAON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CREATION, IN YOUR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "QAAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CREATION, YOUR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "QANIS": {
- "gematria": [
- 163
- ],
- "meanings": [
- {
- "meaning": "olives",
- "source": "EMPM"
- },
- {
- "meaning": "OLIVES",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "quah-nee-ess",
- "source": "EMPM"
- }
- ]
- },
- "QTING": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ROTTEN, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "QUAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 1636,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "QUASAHI": {
- "gematria": [
- 190
- ],
- "meanings": [
- {
- "meaning": "pleasure, delight",
- "source": "EMPM"
- },
- {
- "meaning": "PLEASURE, OF",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "quah-sah-hee",
- "source": "EMPM"
- }
- ]
- },
- "QUASB": {
- "gematria": [
- 128
- ],
- "meanings": [
- {
- "meaning": "to ruin, destroy",
- "source": "EMPM"
- },
- {
- "meaning": "DESTROY",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "quah-seh-beh",
- "source": "EMPM"
- }
- ]
- },
- "QUIIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WHEREIN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "QURLST": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HANDMAID, A",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "R": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Don (R)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "east",
- "source": "WE",
- "source2": "Lamen"
- }
- ],
- "pronounciations": []
- },
- "RAAGIOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KING OF WATER TABLET (VAR)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RAAGIOS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KING OF WATER TABLET (VAR)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RAAGIOSL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ELEMENTAL KING OF WATER TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RAAS": {
- "gematria": [
- 119
- ],
- "meanings": [
- {
- "meaning": "the East",
- "source": "EMPM"
- },
- {
- "meaning": "east, the",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "rah-ah-seh",
- "source": "EMPM"
- }
- ]
- },
- "RAASY": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "east, into the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RACLIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "weeping",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RANGLAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN UTI",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RBNH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RBXNH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "REST": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PRAISE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RESTEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THAT YOU MAY PRAISE HIM",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RGAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RGOAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RII": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "29TH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RIOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WIDOW, OF A",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RIPIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NO PLACE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RIT": {
- "gematria": [
- 163,
- 169
- ],
- "meanings": [
- {
- "meaning": "mercy",
- "source": "EMPM"
- },
- {
- "meaning": "mercy",
- "source": "EMPM"
- },
- {
- "meaning": "MERCY, OF",
- "source": "WE"
- },
- {
- "meaning": "MERCY, OF",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ree-teh",
- "source": "EMPM"
- },
- {
- "pronounciation": "ree-teh",
- "source": "EMPM"
- }
- ]
- },
- "RLEMU": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RLMU": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RLODNR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "RLU furnace ( ?), crucible (?)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RLU": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "'is moving’; completed; ending",
- "source": "WE",
- "source2": "Table of 12"
- },
- {
- "meaning": "‘not moving’, ‘not-ing’ or ‘making into not (non-existence)’, destroying",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "RNAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "sunrise",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "RNDIL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RNIL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "3 rd minister of Sol (a Son of Son of Light (Jupiter) [cf. Rocle on 7x7 Tablet]",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ROCLE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SON OF SON OF LIGHT, JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ROEMNAB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "3RD MINISTER OF SOL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RONOOMB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN TOR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ROR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "sun",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ROWGH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ROXTAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "wine",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RSAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "admiration",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RSNI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RSONI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RUDNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RV": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Angel of the East",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "RVOI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RVROI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RXAO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF EARTHRXPAO Servient Angel EARTH OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RZIONR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "RZLA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel AIR OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "S": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Fam (S)",
- "source": "WE"
- },
- {
- "meaning": "FOURTH",
- "source": "WE"
- },
- {
- "meaning": "DAUGHTER OF DAUGHTER OF LIGHT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SA": {
- "gematria": [
- 13
- ],
- "meanings": [
- {
- "meaning": "within",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "sah",
- "source": "EMPM"
- }
- ]
- },
- "SAANIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PARTS, BY HER",
- "source": "WE"
- },
- {
- "meaning": "PARTS, IN THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SABA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WHOSE, VAR ON 'SOBA'",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SABULAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "who proclaims",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SACH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CONFIRMING ANGELS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SADGLA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Daughter of Light is God’s glory",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SAGA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ONE, ENTIRE, WHOLE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SAGACIY": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "3RD MINISTER OF MARS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SAGACOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NUMBER, IN ONE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SAIINOU": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior JUPITER of WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SAIX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SALBROX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SULPHUR, LIVE SULPHUR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SALD": {
- "gematria": [
- 25
- ],
- "meanings": [
- {
- "meaning": "wonder",
- "source": "EMPM"
- },
- {
- "meaning": "WONDER, OF",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "sal-deh",
- "source": "EMPM"
- }
- ]
- },
- "SALMAN": {
- "gematria": [
- 167
- ],
- "meanings": [
- {
- "meaning": "a house",
- "source": "EMPM"
- },
- {
- "meaning": "HOUSE, THE",
- "source": "WE"
- },
- {
- "meaning": "HOUSE, A",
- "source": "WE"
- },
- {
- "meaning": "HOUSE",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "sah-leh-mah-neh",
- "source": "EMPM"
- }
- ]
- },
- "SAMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the 4 th possesses",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SAMAPHA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZOM",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SAMHAMPORS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the righteous creatures of the Sun of God are separated from the 4th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SAMVELG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "RIGHTEOUS, TO THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SANGEF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sangef (the Master Magickian)",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SAPAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SOUNDS, THE MIGHTY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SAPPOH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the mighty ogdoad",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SAXTOMP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN MAZ",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SAXX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the 4 th dissolves",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SAZIAMI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZAA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SCIO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SCMIO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mourning, cry",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "SEBO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "separation",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SEBRA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "warning",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SEDLO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "cry gives us the 5 –or- cry gives us the Holy Pentagram",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SEMBABAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SEMELABUGEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Semeliel, the angel of the Lord is made strong by the Daughter of Light.",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SEMELIEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF SOL ???",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SEMEROH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SEMNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "nine cries of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SENDENNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF AN EVIL SPIRIT, VAR 1",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SER": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MOURNING, LAMENTATION",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "Servient": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Angel AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SESQVI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the cry of the 4 th , wherein is.../Wherein is the cry of the Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SFAMLLB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "3RD MINISTER OF MERCURY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SHAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SHIAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SIAION": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "TEMPLE, OF THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SIAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SIATRIS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SCORPIONS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SIBSI": {
- "gematria": [
- 139
- ],
- "meanings": [
- {
- "meaning": "covenant",
- "source": "EMPM"
- },
- {
- "meaning": "COVENANT, THE",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "see-beh-see",
- "source": "EMPM"
- }
- ]
- },
- "SIGAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF AIR (VAR)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SIGMORF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN TAN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SIH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the temple and covenant of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SIODA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SIOSP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SISP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SLGAIOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior VENUS of WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SMAN-": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "N ITS REPRESENTATIVE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SMNAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANOTHER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SNICOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Seven Sheaths",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SOAGEEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN NIA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SOBA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WHOSE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SOBAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WHOM",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SOBOLN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WEST, IN THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SOBOLZAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WHOSE COURSES (alt.sp.)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SOBRA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WHOM, IN WHOSE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SOCHIAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LEA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SOE": {
- "gematria": [
- 47
- ],
- "meanings": [
- {
- "meaning": "savior",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "soh-eh",
- "source": "EMPM"
- }
- ]
- },
- "SOLPETH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HEARKEN UNTO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SONDENNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF EVIL SPIRIT, VAR 2",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SONDN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross WATER OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SONF": {
- "gematria": [
- 90
- ],
- "meanings": [
- {
- "meaning": "to reign",
- "source": "EMPM"
- },
- {
- "meaning": "REIGN",
- "source": "WE"
- },
- {
- "meaning": "REIGNS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "soh-en-eff",
- "source": "EMPM"
- }
- ]
- },
- "SONIZNT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior MERCURY of WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ACTION",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SOYGA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WILL OF GOD, SAINTLY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SPA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Daughter of Light keeps",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "SRAHPM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior MARS of WATER TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "STIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "STIMCUL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "(name of an angel)",
- "source": "EMPM",
- "source2": "pg 25"
- },
- {
- "meaning": "DAUGHTER OF LIGHT",
- "source": "WE"
- },
- {
- "meaning": "SON OF LIGHT, SATURN OR LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "Ess-tee-em-kul",
- "source": "EMPM",
- "source2": "pg 25"
- }
- ]
- },
- "STRIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SUDSAMMA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "KELLY'S GOOD ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SUNDENNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF EVIL SPIRIT, VAR 3",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SURZAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SWEAR, HE HAS SWORN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "SYMP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANOTHER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "T": {
- "gematria": [
- 9
- ],
- "meanings": [
- {
- "meaning": "is, as, like, likeness, equality, equilibrium",
- "source": "EMPM"
- },
- {
- "meaning": "Gisa (T)",
- "source": "WE"
- },
- {
- "meaning": "IT",
- "source": "WE"
- },
- {
- "meaning": "ALSO",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "teh",
- "source": "EMPM"
- }
- ]
- },
- "TA": {
- "gematria": [
- 9,
- 15
- ],
- "meanings": [
- {
- "meaning": "is, as, like, likeness, equality, equilibrium",
- "source": "EMPM"
- },
- {
- "meaning": "is, as, like, likeness, equality, equilibrium",
- "source": "EMPM"
- },
- {
- "meaning": "AS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "tah",
- "source": "EMPM"
- },
- {
- "pronounciation": "tah",
- "source": "EMPM"
- }
- ]
- },
- "TAAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TABA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GOVERN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TABAAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GOVERNOR, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TABAAN": {
- "gematria": [
- 76,
- 82
- ],
- "meanings": [
- {
- "meaning": "governor",
- "source": "EMPM"
- },
- {
- "meaning": "governor",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "tah-bah-an",
- "source": "EMPM"
- },
- {
- "pronounciation": "tah-bah-an",
- "source": "EMPM"
- }
- ]
- },
- "TABAORD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GOVERN, LET HER BE GOVERNED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TABAORI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GOVERN",
- "source": "WE"
- },
- {
- "meaning": "GOVERN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TABAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GOVERN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TABGES": {
- "gematria": [
- 39,
- 45
- ],
- "meanings": [
- {
- "meaning": "a cave",
- "source": "EMPM"
- },
- {
- "meaning": "a cave",
- "source": "EMPM"
- },
- {
- "meaning": "CAVES",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "tah-beh-gess",
- "source": "EMPM"
- },
- {
- "pronounciation": "tah-beh-gess",
- "source": "EMPM"
- }
- ]
- },
- "TABITOM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZAX",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TAFA": {
- "gematria": [
- 18,
- 24
- ],
- "meanings": [
- {
- "meaning": "poison",
- "source": "EMPM"
- },
- {
- "meaning": "poison",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "tah-fah",
- "source": "EMPM"
- },
- {
- "pronounciation": "tah-fah",
- "source": "EMPM"
- }
- ]
- },
- "TAHAMDO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN OXO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TAHAOELOI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GREAT ELEMENTAL KING OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER M",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TALHO": {
- "gematria": [
- 48,
- 54
- ],
- "meanings": [
- {
- "meaning": "a cup",
- "source": "EMPM"
- },
- {
- "meaning": "a cup",
- "source": "EMPM"
- },
- {
- "meaning": "CUPS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "tah-leh-hoh",
- "source": "EMPM"
- },
- {
- "pronounciation": "tah-leh-hoh",
- "source": "EMPM"
- }
- ]
- },
- "TAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SEVENTEENTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TAOAGLA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN TEX",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TAPAMAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LOE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TASTOXO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN OXO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TATAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WORMWOOD",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TDIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel WATER OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TEAA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "A GOD-NAME OF FIRE TABLET",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TEDOOND": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN UTA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TELOAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DEATH, VAR ON 'TELOCH'",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TELOCH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DEATH, OF",
- "source": "WE"
- },
- {
- "meaning": "DEATH, OF",
- "source": "WE"
- },
- {
- "meaning": "DEATH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TELOCVOVIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DEATH-DRAGON",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TEMPA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the exception of death is life",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "TEX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "30TH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "THAHAAOTAHE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GREAT ELEMENTAL KING OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "THAHEBIOBEE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ATAN GREAT ELEMENTAL KING OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "THIL": {
- "gematria": [
- 72,
- 78
- ],
- "meanings": [
- {
- "meaning": "seat",
- "source": "EMPM"
- },
- {
- "meaning": "seat",
- "source": "EMPM"
- },
- {
- "meaning": "SEATS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "teh-hee-el",
- "source": "EMPM"
- },
- {
- "pronounciation": "teh-hee-el",
- "source": "EMPM"
- }
- ]
- },
- "THILD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SEATS, THEIR OWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "THILN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SEATS, IN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "THOTANP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN PAZ",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TIA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "UNTO US",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TIANTA": {
- "gematria": [
- 128,
- 140
- ],
- "meanings": [
- {
- "meaning": "a bed",
- "source": "EMPM"
- },
- {
- "meaning": "a bed",
- "source": "EMPM"
- },
- {
- "meaning": "BED, THE",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "tee-an-en-tah",
- "source": "EMPM"
- },
- {
- "pronounciation": "tee-an-en-tah",
- "source": "EMPM"
- }
- ]
- },
- "TIARPAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LIT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TIBIBP": {
- "gematria": [
- 142,
- 148
- ],
- "meanings": [
- {
- "meaning": "sorrow",
- "source": "EMPM"
- },
- {
- "meaning": "sorrow",
- "source": "EMPM"
- },
- {
- "meaning": "SORROW, OF",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "tee-bee-beh-peh",
- "source": "EMPM"
- },
- {
- "pronounciation": "tee-bee-beh-peh",
- "source": "EMPM"
- }
- ]
- },
- "TILB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HER, OF",
- "source": "WE"
- },
- {
- "meaning": "HERTIO TOP LINE OF TABLET OF 12 SQUAR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TIOBL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HER, IN",
- "source": "WE"
- },
- {
- "meaning": "HER, IN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TLB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HIM, OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TLIOB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SEPARATE (verb)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TNBR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel EARTH OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOANT": {
- "gematria": [
- 92,
- 104
- ],
- "meanings": [
- {
- "meaning": "love, union",
- "source": "EMPM"
- },
- {
- "meaning": "love, union",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "toh-an-teh",
- "source": "EMPM"
- },
- {
- "pronounciation": "toh-an-teh",
- "source": "EMPM"
- }
- ]
- },
- "TOANTOM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ASP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOATAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HARKEN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOCARZI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN TAN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOCO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TODNAON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZID",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOFGLO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THINGS, ALL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOGCO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOH": {
- "gematria": [
- 34,
- 40
- ],
- "meanings": [
- {
- "meaning": "triumph",
- "source": "EMPM"
- },
- {
- "meaning": "triumph",
- "source": "EMPM"
- },
- {
- "meaning": "TRIUMPHS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "toh",
- "source": "EMPM"
- },
- {
- "pronounciation": "toh",
- "source": "EMPM"
- }
- ]
- },
- "TOHCOTH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FAERIES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOHOMAPHALA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF A GUARDIAN ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOITT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF AIR (VAR)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOL": {
- "gematria": [
- 41,
- 47
- ],
- "meanings": [
- {
- "meaning": "all, everything",
- "source": "EMPM"
- },
- {
- "meaning": "all, everything",
- "source": "EMPM"
- },
- {
- "meaning": "ALL",
- "source": "WE"
- },
- {
- "meaning": "ON ALL",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "toh-el",
- "source": "EMPM"
- },
- {
- "pronounciation": "toh-el",
- "source": "EMPM"
- }
- ]
- },
- "TOLTORG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CREATURES OF EARTH, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOLTORGI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CREATURES, WITH HER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOLTORN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CREATURES",
- "source": "WE"
- },
- {
- "meaning": "CREATURE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ALL, VAR. ON 'TOL'",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TONUG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DEFACE, LET THEM BE DEFACED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOOAT": {
- "gematria": [
- 72,
- 84
- ],
- "meanings": [
- {
- "meaning": "to provide",
- "source": "EMPM"
- },
- {
- "meaning": "to provide",
- "source": "EMPM"
- },
- {
- "meaning": "FURNISHING",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "toh-oh-ah-teh",
- "source": "EMPM"
- },
- {
- "pronounciation": "toh-oh-ah-teh",
- "source": "EMPM"
- }
- ]
- },
- "TOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "23RD AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TORGU": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ARISE (alt.sp.)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TORZOXI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN POP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TORZU": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ARISE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TORZUL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "RISE, SHALL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TORZULP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "RISE, ROSE UP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOTO": {
- "gematria": [
- 66,
- 78
- ],
- "meanings": [
- {
- "meaning": "cycles",
- "source": "EMPM"
- },
- {
- "meaning": "cycles",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "toh-toh",
- "source": "EMPM"
- },
- {
- "pronounciation": "toh-toh",
- "source": "EMPM"
- }
- ]
- },
- "TOTOCAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN CHR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOTT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HIM, OF",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TPRDEMAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "of darkness",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "TRANAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MARROW, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TRIAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SHALL BE",
- "source": "WE"
- },
- {
- "meaning": "SHALL BE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TRINT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SIT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TROF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BUILDING, A",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TULE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "'It ends with [the goddess] El’; ‘Completed by the goddess’ or ‘Ending with the goddess’",
- "source": "WE",
- "source2": "Table of 12"
- },
- {
- "meaning": "Name from T12Sqr",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TULE ILRO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "LETTERS OF T12SQR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TURBS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BEAUTY, IN THEIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TUSTAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "GOING",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "TZESTS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Being of the 4",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "U": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "U Val (U, V, W)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UCIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "they frown not",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UGEAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "strength, the s. of men",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UGEG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "strong, grow",
- "source": "WE"
- },
- {
- "meaning": "strong, waxes",
- "source": "WE"
- },
- {
- "meaning": "strong, become",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "end",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ULCININ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "happy is he",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ULR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Name from T12Sqr",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ULS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ends, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "called, named, var on 'vmd'",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UMADEA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "towers, strong",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UMBLOSDA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "one who resides in the skies",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "UML": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "add",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UMPLIF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "strength, our",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER A",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UNAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "these",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UNALAB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "skirt",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UNALAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "skirts, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UNBA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "is powerful",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "UNCAL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UNCHI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "confound",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UNDES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "leaves the 4th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "UNDL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "rest; remainder, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UNIG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "requires",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UNIGLAG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "descend",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UNNAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross AIR OF EARTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UNPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "anger, wrath. var on 'vonph'?",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UOLXDO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross EARTH OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UPAAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WINGS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER L",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "URAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ELDERS, THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "URCH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "CONFOUNDING ANGELS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "USNARDA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ICH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UTA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FOURTEENTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "UTI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "25TH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "V": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "star",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "spirit of Vaa",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VAA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF AN ANGEL",
- "source": "WE"
- },
- {
- "meaning": "(angel of the 4 moons)",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VAASA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VABZIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "eagle, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VADALI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Sephirotic Cross WATER OF FIRE",
- "source": "WE"
- },
- {
- "meaning": "Sephirotic Cross WATER OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VADGS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "time",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VALGARS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN LIL",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VAMI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the way of the Lord",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER V,U",
- "source": "WE"
- },
- {
- "meaning": "star",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VANA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "starry, stars",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VANDEMINAXAT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "constellations",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VANDRES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Scepter of the Daughter of Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VANGEM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the will of heaven",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VANGET": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "not the fourth star",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VANGLOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "fruit of heaven",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VANS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "fourth star",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VANSAMPLE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the fabric of stars",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VANSAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the circle of stars",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VAOAN": {
- "gematria": [
- 162
- ],
- "meanings": [
- {
- "meaning": "truth",
- "source": "EMPM"
- },
- {
- "meaning": "truth",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "vah-oh-ah-en",
- "source": "EMPM"
- }
- ]
- },
- "VAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "that star, the star in 9",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VARCA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "spiritual sun",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VARO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Va’aro (from Loagaeth: Leaf 1A vs. 10)",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VARSG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VAS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "angel of Daughter of Light",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VASA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VASG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel AIR OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VASTRIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN RII",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VAU": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENOCHIAN LETTER V,U",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VAUL": {
- "gematria": [
- 154
- ],
- "meanings": [
- {
- "meaning": "to work, toil",
- "source": "EMPM"
- },
- {
- "meaning": "work",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "vah-u-el",
- "source": "EMPM"
- }
- ]
- },
- "VAUN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "work, that ye might",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VAVAAMP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN MAZ",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "orbit",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VBRAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "guardian star",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "third star",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VDRIOS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Zodiac",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the spark of life",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VEH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VEH, ENOCHIAN LETTER C OR K",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VELUCORSAPA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ENTHRONED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VEP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "flame, as a",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VEROX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Holy Spirit",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VICAP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "meaning unknown",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VIROOLI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZOM",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VIRQ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "nests",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VIRUDEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "I have beautified (Crowley)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VIV": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "second",
- "source": "WE"
- },
- {
- "meaning": "in the second",
- "source": "WE"
- },
- {
- "meaning": "the second",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VIVIPOS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN UTA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VIXPALG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ASP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VLLA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the end of the beginning",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VLOH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the end of sorrow",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VLS": {
- "gematria": [
- 85
- ],
- "meanings": [
- {
- "meaning": "the ends, farthest reaches",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "fel-ess",
- "source": "EMPM"
- }
- ]
- },
- "VNAEM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "nine skirts",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VNDANPEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Master Magickian",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VNDAT": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "also, the Master Magickian",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VNIG": {
- "gematria": [
- 188
- ],
- "meanings": [
- {
- "meaning": "to require, need",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "veh-nee-geh",
- "source": "EMPM"
- }
- ]
- },
- "VNPH": {
- "gematria": [
- 130
- ],
- "meanings": [
- {
- "meaning": "anger",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "ven-pen",
- "source": "EMPM"
- }
- ]
- },
- "VNRA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the wrathful sun",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "wherein",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VOHIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "mighty",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VOM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "of everyone",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VOMSARG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "unto every one of you",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "image of God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VONPHO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "wrath, of",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VONPOVNPH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "wrath in anger",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VOOAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "truth",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "appearance",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VORS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "over",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VORSG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "over you",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VORX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "visits",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VOTOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "wherein all",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VOVIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "dragons",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VOVINA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "dragon, the",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VOX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "wherein they are (separated)",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VOXAD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "wherein they are in the third",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VPAAH": {
- "gematria": [
- 92
- ],
- "meanings": [
- {
- "meaning": "wings",
- "source": "EMPM"
- },
- {
- "meaning": "wings",
- "source": "WE"
- },
- {
- "meaning": "wings",
- "source": "WE"
- },
- {
- "meaning": "wings, the",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "veh-pah-ah",
- "source": "EMPM"
- }
- ]
- },
- "VRANKRAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The Son of Son of Light, unto the eld[ers]",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VRBS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "beautified",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VRDRAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "dark star",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VRELP": {
- "gematria": [
- 197
- ],
- "meanings": [
- {
- "meaning": "an adept, seer",
- "source": "EMPM"
- },
- {
- "meaning": "seething, a strong",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "var-el-peh",
- "source": "EMPM"
- }
- ]
- },
- "VREPREZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "with beautiful praises",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VRO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "this one",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "VSPSN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VSSN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel WATER OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "VX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": 42,
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "X": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Pal (X)",
- "source": "WE"
- },
- {
- "meaning": "dissolution",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "XA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "in dissolution",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "XGSD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel FIRE OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "XPACN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "XPCN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel FIRE OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "XRINH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "XRNH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Servient Angel EARTH OF WATER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "YALPAMB": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZEN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "YARRY": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PROVIDENCE, TO THE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "YLLMAFS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "3RD MINISTER OF LUNA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "YLSI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BEFORE THEE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "YOLCAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BRING FORTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "YOLCI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "BRINGS FORTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "YOR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ROAR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "YRPOIL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DIVISION",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "YTPA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel WATER OF AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "Z": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Ceph (Z)",
- "source": "WE"
- },
- {
- "meaning": "THEY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZA": {
- "gematria": [
- 9,
- 15
- ],
- "meanings": [
- {
- "meaning": "within",
- "source": "EMPM"
- },
- {
- "meaning": "within",
- "source": "EMPM"
- },
- {
- "meaning": "NAME OF AN ANGEL",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "zodah",
- "source": "EMPM"
- },
- {
- "pronounciation": "zodah",
- "source": "EMPM"
- }
- ]
- },
- "ZAA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "27TH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZAAOZAIF": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Senior JUPITER of AIR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZABLIS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "both S and Ab (should be followed by a verb—such as to say: both S and Ab went to the store; or even preceded by a verb—such as to say: Henry invited both S and Ab); these are names of two of the Daughters of Daughters of Light.",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ZACAM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "I MOVE YOU",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZACAR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MOVE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZADZACZADLI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ADAM, IN BOOK OF SOYGA",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZAFASAI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZEN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZAH": {
- "gematria": [
- 10,
- 16
- ],
- "meanings": [
- {
- "meaning": "inside, inner",
- "source": "EMPM"
- },
- {
- "meaning": "inside, inner",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "zodah",
- "source": "EMPM"
- },
- {
- "pronounciation": "zodah",
- "source": "EMPM"
- }
- ]
- },
- "ZAMFRES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN ZID",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZAMRAN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SHOW YOURSELVES",
- "source": "WE"
- },
- {
- "meaning": "APPEAR",
- "source": "WE"
- },
- {
- "meaning": "SHOW YOURSELVES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZAR": {
- "gematria": [
- 109,
- 115
- ],
- "meanings": [
- {
- "meaning": "ways, paths, courses",
- "source": "EMPM"
- },
- {
- "meaning": "ways, paths, courses",
- "source": "EMPM"
- },
- {
- "meaning": "COURSE, COURSES",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "zod-ar",
- "source": "EMPM"
- },
- {
- "pronounciation": "zod-ar",
- "source": "EMPM"
- }
- ]
- },
- "ZARNAAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Zodiacal King GEMINI",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZARZILG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Zodiacal King VIRGO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZAX": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "TENTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZAXANIN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN TOR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZCHIS": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THEY ARE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Daughter of Light",
- "source": "WE",
- "source2": "Holy Table of Practice perimeter"
- }
- ],
- "pronounciations": []
- },
- "ZEBOG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Daughter of Light reigns over",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ZED": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "The Daughter of Light; also a medieval way of pronouncing the English letter Z",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ZEDEKIEL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "ANGEL OF JUPITER",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZEMBVGES": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "the Daughter of Light’s 9 glories from the 4th",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ZEN": {
- "gematria": [
- 63,
- 69
- ],
- "meanings": [
- {
- "meaning": "sacrifice",
- "source": "EMPM"
- },
- {
- "meaning": "sacrifice",
- "source": "EMPM"
- },
- {
- "meaning": "EIGHTEENTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "zod-en",
- "source": "EMPM"
- },
- {
- "pronounciation": "zod-en",
- "source": "EMPM"
- }
- ]
- },
- "ZEZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "firey angels",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ZID": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "EIGHTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HANDS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "?STRETCH FORTH",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZILDAR": {
- "gematria": [
- 181,
- 187
- ],
- "meanings": [
- {
- "meaning": "to fly",
- "source": "EMPM"
- },
- {
- "meaning": "to fly",
- "source": "EMPM"
- },
- {
- "meaning": "FLEW",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "zodee-leh-dar",
- "source": "EMPM"
- },
- {
- "pronounciation": "zodee-leh-dar",
- "source": "EMPM"
- }
- ]
- },
- "ZILDRON": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN CHR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZILODARP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NAME OF GOD",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THIRTEENTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIMAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "clothed with God",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- },
- "ZIMII": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HAVE ENTERED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIMZ": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "VESTURES, MY VESTURES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIN": {
- "gematria": [
- 113,
- 119
- ],
- "meanings": [
- {
- "meaning": "waters",
- "source": "EMPM"
- },
- {
- "meaning": "waters",
- "source": "EMPM"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "zodee-en",
- "source": "EMPM"
- },
- {
- "pronounciation": "zodee-en",
- "source": "EMPM"
- }
- ]
- },
- "ZINGGEN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Zodiacal King CAPRICORN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "NINTH AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIR": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "I AM",
- "source": "WE"
- },
- {
- "meaning": "PRESENCE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIRACAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Zodiacal King AQUARIUS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIRDO": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "I AMZIRENAIAD I AM THE LORD YOUR GOD",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIRN": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WONDERS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIROM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THEY WERE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIROP": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WAS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIRZIRD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "PART IN MAZ",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIXLAY": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "TO STIR UP",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Kerubic Angel FIRE OF FIRE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZIZOP": {
- "gematria": [
- 105,
- 117
- ],
- "meanings": [
- {
- "meaning": "vessels",
- "source": "EMPM"
- },
- {
- "meaning": "vessels",
- "source": "EMPM"
- },
- {
- "meaning": "VESSELS",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "zodee-zodoh-pah",
- "source": "EMPM"
- },
- {
- "pronounciation": "zodee-zodoh-pah",
- "source": "EMPM"
- }
- ]
- },
- "ZLIDA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "WATER, TO",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MOTION, MOVEMENT",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZNRZA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SWORE",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "HANDS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZOM": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THIRD AETHYR",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZOMD": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "IN THE MIDST",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZON": {
- "gematria": [
- 83,
- 89
- ],
- "meanings": [
- {
- "meaning": "form",
- "source": "EMPM"
- },
- {
- "meaning": "form",
- "source": "EMPM",
- "note": "In the book this appears as “zod-en”, which is clearly wrong, but also, the word appears with the correct pronounciation for gematria 83."
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "zodoh-en",
- "source": "EMPM"
- },
- {
- "pronounciation": "zodoh-en",
- "source": "EMPM",
- "note": "In the book this appears as “zod-en”, which is clearly wrong, but also, the word appears with the correct pronounciation for gematria 83."
- }
- ]
- },
- "ZON-": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "L THE FIRST FORM (Schuler)",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZONAC": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "THEY ARE APPARELED",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZONG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "OF THE WINDS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZONRENSG": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "DELIVERED YOU",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZORGE": {
- "gematria": [
- 151,
- 157
- ],
- "meanings": [
- {
- "meaning": "love, friendly",
- "source": "EMPM"
- },
- {
- "meaning": "love, friendly",
- "source": "EMPM"
- },
- {
- "meaning": "BE FRIENDLY TO ME",
- "source": "WE"
- }
- ],
- "pronounciations": [
- {
- "pronounciation": "zodah-ra-geh",
- "source": "EMPM"
- },
- {
- "pronounciation": "zodoh-ra-geh",
- "source": "EMPM"
- }
- ]
- },
- "ZUDNA": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZUMVI": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "SEAS",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZURAAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FERVENTLY, WITH HUMILITY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZURAH": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "FERVENTLY, WITH HUMILITY",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZURCHOL": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Zodiacal King PISCES",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZURE": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "MEANING UNKNOWN",
- "source": "WE"
- }
- ],
- "pronounciations": []
- },
- "ZURESK": {
- "gematria": [],
- "meanings": [
- {
- "meaning": "Fervently unto the 4 th Heaven, Rushing",
- "source": "WE",
- "source2": "Liber Loagaeth"
- }
- ],
- "pronounciations": []
- }
-}
diff --git a/data/enochian/letters.json b/data/enochian/letters.json
deleted file mode 100644
index a445c01..0000000
--- a/data/enochian/letters.json
+++ /dev/null
@@ -1,212 +0,0 @@
-{
- "A": {
- "id": "A",
- "enochian": "A",
- "title": "Un",
- "english": "A",
- "pronounciation": "ah",
- "planet/element": "taurus",
- "tarot": "hierophant",
- "gematria": 6
- },
- "B": {
- "id": "B",
- "enochian": "B",
- "title": "Pe",
- "english": "B",
- "pronounciation": "beh",
- "planet/element": "aries",
- "tarot": "star",
- "gematria": 5
- },
- "C": {
- "id": "C",
- "enochian": "C",
- "title": "Veh",
- "english": "C,K",
- "pronounciation": "co",
- "planet/element": "fire",
- "tarot": "judgement",
- "gematria": 300
- },
- "D": {
- "id": "D",
- "enochian": "D",
- "title": "Gal",
- "english": "D",
- "pronounciation": "deh",
- "planet/element": "spirit",
- "tarot": "empress",
- "gematria": 4
- },
- "E": {
- "id": "E",
- "enochian": "E",
- "title": "Graph",
- "english": "E",
- "pronounciation": "ee",
- "planet/element": "virgo",
- "tarot": "hermit",
- "gematria": 10
- },
- "F": {
- "id": "F",
- "enochian": "F",
- "title": "Orth",
- "english": "F",
- "pronounciation": "eff",
- "planet/element": "Cauda Draonis",
- "tarot": "juggler",
- "gematria": 3
- },
- "G": {
- "id": "G",
- "enochian": "G",
- "title": "Ged",
- "english": "G",
- "pronounciation": "gee",
- "planet/element": "cancer",
- "tarot": "chariot",
- "gematria": 8
- },
- "H": {
- "id": "H",
- "enochian": "H",
- "title": "Na-hath",
- "english": "H",
- "pronounciation": "heh",
- "planet/element": "air",
- "tarot": "fool",
- "gematria": 1
- },
- "I": {
- "id": "I",
- "enochian": "I",
- "title": "Gon",
- "english": "I,Y,J",
- "pronounciation": "ee",
- "planet/element": "sagittarius",
- "tarot": "temperance",
- "gematria": 60
- },
- "L": {
- "id": "L",
- "enochian": "L",
- "title": "Ur",
- "english": "L",
- "pronounciation": "el, leh",
- "planet/element": "cancer",
- "tarot": "charit",
- "gematria": 8
- },
- "M": {
- "id": "M",
- "enochian": "M",
- "title": "Tal",
- "english": "M",
- "pronounciation": "em",
- "planet/element": "aquarius",
- "tarot": "emperor",
- "gematria": 90
- },
- "N": {
- "id": "N",
- "enochian": "N",
- "title": "Drun",
- "english": "N",
- "pronounciation": "en",
- "planet/element": "scorpio",
- "tarot": "death",
- "gematria": 50
- },
- "O": {
- "id": "O",
- "enochian": "O",
- "title": "Med",
- "english": "O",
- "pronounciation": "oh",
- "planet/element": "libra",
- "tarot": "justice",
- "gematria": 30
- },
- "P": {
- "id": "P",
- "enochian": "P",
- "title": "Mals",
- "english": "P",
- "pronounciation": "peh",
- "planet/element": "leo",
- "tarot": "strength",
- "gematria": 9
- },
- "Q": {
- "id": "Q",
- "enochian": "Q",
- "title": "Ger",
- "english": "Q",
- "pronounciation": "quo",
- "planet/element": "water",
- "tarot": "hanged man",
- "gematria": 40
- },
- "R": {
- "id": "R",
- "enochian": "R",
- "title": "Don",
- "english": "R",
- "pronounciation": "reh, ar",
- "planet/element": "pesces",
- "tarot": "moon",
- "gematria": 100
- },
- "S": {
- "id": "S",
- "enochian": "S",
- "title": "Fam",
- "english": "S",
- "pronounciation": "she, ess",
- "planet/element": "gemini",
- "tarot": "lovers",
- "gematria": 7
- },
- "T": {
- "id": "T",
- "enochian": "T",
- "title": "Gisa",
- "english": "T",
- "pronounciation": "teh",
- "planet/element": "leo",
- "tarot": "strength",
- "gematria": 9
- },
- "V": {
- "id": "V",
- "enochian": "V",
- "title": "Vau",
- "english": "U,V,W",
- "pronounciation": "vaa",
- "planet/element": "capricorn",
- "tarot": "devil",
- "gematria": 70
- },
- "X": {
- "id": "X",
- "enochian": "X",
- "title": "Pal",
- "english": "X",
- "pronounciation": "s, tz",
- "planet/element": "earth",
- "tarot": "universe",
- "gematria": 400
- },
- "Z": {
- "id": "Z",
- "enochian": "Z",
- "title": "Ceph",
- "english": "Z",
- "pronounciation": "zod, zee",
- "planet/element": "leo",
- "tarot": "strength",
- "gematria": 9
- }
-}
diff --git a/data/enochian/tablets.json b/data/enochian/tablets.json
deleted file mode 100644
index fe77b5f..0000000
--- a/data/enochian/tablets.json
+++ /dev/null
@@ -1,376 +0,0 @@
-{
- "earth": {
- "id": "earth",
- "grid": [
- [
- "b",
- "O",
- "a",
- "Z",
- "a",
- "R",
- "o",
- "P",
- "h",
- "a",
- "R",
- "a"
- ],
- [
- "v",
- "N",
- "n",
- "a",
- "x",
- "o",
- "P",
- "S",
- "o",
- "n",
- "d",
- "n"
- ],
- [
- "a",
- "i",
- "g",
- "r",
- "a",
- "n",
- "o",
- "o",
- "m",
- "a",
- "g",
- "g"
- ],
- [
- "o",
- "r",
- "P",
- "m",
- "n",
- "i",
- "n",
- "g",
- "b",
- "e",
- "a",
- "l"
- ],
- [
- "r",
- "s",
- "O",
- "n",
- "i",
- "z",
- "i",
- "r",
- "l",
- "e",
- "m",
- "v"
- ],
- [
- "i",
- "z",
- "i",
- "n",
- "r",
- "C",
- "z",
- "i",
- "a",
- "M",
- "h",
- "l"
- ],
- [
- "M",
- "O",
- "r",
- "d",
- "i",
- "a",
- "l",
- "h",
- "C",
- "t",
- "G",
- "a"
- ],
- [
- "O",
- "C",
- "a",
- "n",
- "c",
- "h",
- "i",
- "a",
- "s",
- "o",
- "m",
- "t"
- ],
- [
- "A",
- "r",
- "b",
- "i",
- "z",
- "m",
- "i",
- "i",
- "l",
- "P",
- "i",
- "z"
- ],
- [
- "O",
- "P",
- "a",
- "n",
- "a",
- "L",
- "a",
- "m",
- "S",
- "m",
- "a",
- "P"
- ],
- [
- "d",
- "O",
- "l",
- "o",
- "P",
- "i",
- "n",
- "i",
- "a",
- "n",
- "b",
- "a"
- ],
- [
- "r",
- "x",
- "P",
- "a",
- "o",
- "c",
- "s",
- "i",
- "z",
- "i",
- "x",
- "P"
- ],
- [
- "a",
- "x",
- "t",
- "i",
- "r",
- "V",
- "a",
- "s",
- "t",
- "r",
- "i",
- "m"
- ]
- ]
- },
- "air": {
- "id": "air",
- "grid": [
- [
- "r",
- "Z",
- "i",
- "l",
- "a",
- "f",
- "A",
- "Y",
- "t",
- "l",
- "P",
- "a"
- ],
- [
- "a",
- "r",
- "d",
- "Z",
- "a",
- "i",
- "d",
- "P",
- "a",
- "L",
- "a",
- "m"
- ],
- [
- "c",
- "z",
- "o",
- "n",
- "s",
- "a",
- "r",
- "o",
- "Y",
- "a",
- "v",
- "b"
- ],
- [
- "T",
- "o",
- "i",
- "T",
- "t",
- "z",
- "o",
- "P",
- "a",
- "c",
- "o",
- "C"
- ],
- [
- "S",
- "i",
- "g",
- "a",
- "s",
- "o",
- "m",
- "r",
- "b",
- "z",
- "n",
- "h"
- ],
- [
- "f",
- "m",
- "o",
- "n",
- "d",
- "a",
- "T",
- "d",
- "i",
- "a",
- "r",
- "i"
- ],
- [
- "o",
- "r",
- "o",
- "i",
- "b",
- "A",
- "h",
- "a",
- "o",
- "z",
- "P",
- "i"
- ],
- [
- "t",
- "N",
- "a",
- "b",
- "r",
- "V",
- "i",
- "x",
- "g",
- "a",
- "s",
- "d"
- ],
- [
- "O",
- "i",
- "i",
- "i",
- "t",
- "T",
- "P",
- "a",
- "l",
- "O",
- "a",
- "i"
- ],
- [
- "A",
- "b",
- "a",
- "m",
- "o",
- "o",
- "o",
- "a",
- "C",
- "v",
- "c",
- "a"
- ],
- [
- "N",
- "a",
- "o",
- "c",
- "O",
- "T",
- "t",
- "n",
- "P",
- "r",
- "n",
- "T"
- ],
- [
- "o",
- "c",
- "a",
- "n",
- "m",
- "a",
- "g",
- "o",
- "t",
- "r",
- "o",
- "i"
- ],
- [
- "S",
- "h",
- "i",
- "a",
- "l",
- "r",
- "a",
- "P",
- "m",
- "z",
- "o",
- "x"
- ]
- ]
- }
-}
diff --git a/data/gd/degrees.json b/data/gd/degrees.json
deleted file mode 100644
index 84f3c32..0000000
--- a/data/gd/degrees.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "1st": {
- "id": "1st",
- "pillarId": "severity"
- },
- "2nd": {
- "id": "2nd",
- "pillarId": "mercy"
- },
- "3rd": {
- "id": "3rd",
- "pillarId": "middle"
- }
-}
diff --git a/data/gd/grades.json b/data/gd/grades.json
deleted file mode 100644
index d10717f..0000000
--- a/data/gd/grades.json
+++ /dev/null
@@ -1,115 +0,0 @@
-{
- "0=0": {
- "id": "0=0",
- "name": "Neophyte",
- "orderId": "1st",
- "degreeId": "1st",
- "next": "1=10"
- },
- "1=10": {
- "id": "1=10",
- "name": "Zelator",
- "elementId": "earth",
- "planetId": "earth",
- "orderId": "1st",
- "degreeId": "1st",
- "sephirahId": "malchut",
- "prev": "0=0",
- "next": "2=9"
- },
- "2=9": {
- "id": "2=9",
- "name": "Theoricus",
- "elementId": "air",
- "planetId": "luna",
- "orderId": "1st",
- "degreeId": "1st",
- "sephirahId": "yesod",
- "prev": "1=10",
- "next": "3=8"
- },
- "3=8": {
- "id": "3=8",
- "name": "Practicus",
- "elementId": "water",
- "planetId": "mercury",
- "orderId": "1st",
- "degreeId": "1st",
- "sephirahId": "hod",
- "prev": "2=9",
- "next": "4=7"
- },
- "4=7": {
- "id": "4=7",
- "name": "Philosophus",
- "elementId": "fire",
- "planetId": "venus",
- "orderId": "1st",
- "degreeId": "1st",
- "sephirahId": "netzach",
- "prev": "3=8",
- "next": "portal"
- },
- "portal": {
- "id": "portal",
- "name": "Portal",
- "elementId": "spirit",
- "degreeId": "2nd",
- "prev": "4=7",
- "next": "5=6"
- },
- "5=6": {
- "id": "5=6",
- "name": "Adeptus Minor",
- "planetId": "sol",
- "orderId": "2nd",
- "degreeId": "3rd",
- "sephirahId": "tiferet",
- "prev": "portal",
- "next": "6=5"
- },
- "6=5": {
- "id": "6=5",
- "name": "Adeptus Major",
- "planetId": "mars",
- "orderId": "2nd",
- "degreeId": "3rd",
- "sephirahId": "gevurah",
- "prev": "5=6",
- "next": "7=4"
- },
- "7=4": {
- "id": "7=4",
- "name": "Adeptus Exemptus",
- "planetId": "jupiter",
- "orderId": "2nd",
- "degreeId": "3rd",
- "sephirahId": "hesed",
- "prev": "6=5",
- "next": "8=3"
- },
- "8=3": {
- "id": "8=3",
- "name": "Magister Templi",
- "planetId": "saturn",
- "orderId": "3rd",
- "sephirahId": "binah",
- "prev": "7=4",
- "next": "9=2"
- },
- "9=2": {
- "id": "9=2",
- "name": "Magus",
- "orderId": "3rd",
- "sephirahId": "chochmah",
- "prev": "8=3",
- "next": "10=1"
- },
- "10=1": {
- "id": "10=1",
- "name": "Ipsissimus",
- "orderId": "3rd",
- "sephirahId": "keter",
- "prev": "9=2"
- }
-}
diff --git a/data/gematria-ciphers.json b/data/gematria-ciphers.json
deleted file mode 100644
index e2ec029..0000000
--- a/data/gematria-ciphers.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "meta": {
- "description": "Positional gematria ciphers based on a single universal alphabet.",
- "notes": "All ciphers map A-Z positions (1-26) to numeric values."
- },
- "baseAlphabet": "abcdefghijklmnopqrstuvwxyz",
- "ciphers": [
- {
- "id": "simple-ordinal",
- "name": "Simple Ordinal",
- "description": "A=1 ... Z=26",
- "values": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26]
- },
- {
- "id": "full-reduction",
- "name": "Full Reduction",
- "description": "A=1 ... I=9, J=1 ... Z=8",
- "values": [1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8]
- },
- {
- "id": "reverse-ordinal",
- "name": "Reverse Ordinal",
- "description": "A=26 ... Z=1",
- "values": [26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
- },
- {
- "id": "ordinal-plus-9",
- "name": "Ordinal +9",
- "description": "A=10 ... Z=35 (e.g. 11th position = 20)",
- "values": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35]
- }
- ]
-}
diff --git a/data/geomancy/houses.json b/data/geomancy/houses.json
deleted file mode 100644
index 4ef2f7f..0000000
--- a/data/geomancy/houses.json
+++ /dev/null
@@ -1,75 +0,0 @@
-[
- {},
- {
- "id": 1,
- "meaning": {
- "en": "Personality of the Querent, his life, health, habits, behavior and other personal characteristics."
- }
- },
- {
- "id": 2,
- "meaning": {
- "en": "Money, property, finances, possible theft through negligence or loss."
- }
- },
- {
- "id": 3,
- "meaning": {
- "en": "Communication, relatives by blood, letters, news, short journeys, writing, other pursuits associated with Mercury."
- }
- },
- {
- "id": 4,
- "meaning": {
- "en": "Home, inheritance, possessions, hidden treasure, environment, retirement, the conclusion of any matter. Information about theft or thieves."
- }
- },
- {
- "id": 5,
- "meaning": {
- "en": "Women, luxury, drinking, procreation, creation, artistic work. Gambling and speculation."
- }
- },
- {
- "id": 6,
- "meaning": {
- "en": "Employees, sickness, which body parts are most likely to suffer illness or injury. Domestic animals and close relatives other than immediate family."
- }
- },
- {
- "id": 7,
- "meaning": {
- "en": "Love, marriage, prostitution, partnerships. Public enemies, lawsuits, war opponents, thieves and dishonor."
- }
- },
- {
- "id": 8,
- "meaning": {
- "en": "Death, Wills, legacies. Poverty."
- }
- },
- {
- "id": 9,
- "meaning": {
- "en": "Long journeys, relationships with foreigners, science, the church, art, religion dreams and divinations."
- }
- },
- {
- "id": 10,
- "meaning": {
- "en": "Fame, reputation, honor, mother, trade authority."
- }
- },
- {
- "id": 11,
- "meaning": {
- "en": "Friends, social contacts, altruistic organizations."
- }
- },
- {
- "id": 12,
- "meaning": {
- "en": "Sorrow, hospitals, intrigue, prisons, restrictions, unseen dangers, fears."
- }
- }
-]
diff --git a/data/geomancy/tetragrams.json b/data/geomancy/tetragrams.json
deleted file mode 100644
index c3fe842..0000000
--- a/data/geomancy/tetragrams.json
+++ /dev/null
@@ -1,990 +0,0 @@
-{
- "acquisitio": {
- "id": "acquisitio",
- "rows": [
- 2,
- 1,
- 2,
- 1
- ],
- "title": {
- "en": "Acquisitio"
- },
- "translation": {
- "en": "gain"
- },
- "meaning": {
- "en": "Generally good for profit and gain."
- },
- "meanings": [
- {},
- {
- "en": "Happy, success in all things."
- },
- {
- "en": "Very prosperous."
- },
- {
- "en": "Favor and riches."
- },
- {
- "en": "Good fortune and success."
- },
- {
- "en": "Good success."
- },
- {
- "en": "Good - especially if it agrees with the 5th."
- },
- {
- "en": "Reasonably good."
- },
- {
- "en": "Rather good, but not very. The sick shall die."
- },
- {
- "en": "Good in all demands."
- },
- {
- "en": "Good in suits."
- },
- {
- "en": "Good in all."
- },
- {
- "en": "Unfavourable, pain and loss."
- }
- ],
- "zodiacId": "sagittarius",
- "elementId": "fire",
- "planetId": "jupiter",
- "rulerId": "hismael"
- },
- "albus": {
- "id": "albus",
- "rows": [
- 2,
- 2,
- 1,
- 2
- ],
- "title": {
- "en": "Albus"
- },
- "translation": {
- "en": "white"
- },
- "meaning": {
- "en": "Good for profit and for entering into a place or undertaking."
- },
- "meanings": [
- {},
- {
- "en": "Good for marriage. Mercurial. Peace."
- },
- {
- "en": "Good in all."
- },
- {
- "en": "Very good."
- },
- {
- "en": "Very good except in War."
- },
- {
- "en": "Good."
- },
- {
- "en": "Good in all things."
- },
- {
- "en": "Good except in all things."
- },
- {
- "en": "Good."
- },
- {
- "en": "A messenger brings a letter."
- },
- {
- "en": "Excellent in all."
- },
- {
- "en": "Very good."
- },
- {
- "en": "Marvelously good."
- }
- ],
- "zodiacId": "gemini",
- "elementId": "air",
- "planetId": "mercury",
- "rulerId": "taphtatharath"
- },
- "amissio": {
- "id": "amissio",
- "title": {
- "en": "Amissio"
- },
- "rows": [
- 1,
- 2,
- 1,
- 2
- ],
- "translation": {
- "en": "loss"
- },
- "meaning": {
- "en": "Good for loss of substance and sometimes for love; but very bad for gain."
- },
- "meanings": [
- {},
- {
- "en": "Ill in all things but for prisoners."
- },
- {
- "en": "Very Ill for money, but good for love."
- },
- {
- "en": "Ill end-except for quarrels."
- },
- {
- "en": "Ill in all."
- },
- {
- "en": "Unfavourable except for agriculture."
- },
- {
- "en": "Rather unfavourable for love."
- },
- {
- "en": "Very good for love, otherwise unfavourable."
- },
- {
- "en": "Excellent in all questions."
- },
- {
- "en": "Unfavourable in all things."
- },
- {
- "en": "Unfavourable except for favor with women."
- },
- {
- "en": "Good for love, otherwise bad."
- },
- {
- "en": "Unfavourable in all things."
- }
- ],
- "zodiacId": "taurus",
- "elementId": "earth",
- "planetId": "venus",
- "rulerId": "kedemel"
- },
- "caput_draconis": {
- "id": "caput_draconis",
- "rows": [
- 2,
- 1,
- 1,
- 1
- ],
- "title": {
- "en": "Caput Draconis"
- },
- "translation": {
- "en": "dragon's head"
- },
- "meaning": {
- "en": "Good with good; evil with evil. Gives good issue for gain."
- },
- "meanings": [
- {},
- {
- "en": "Good in all things."
- },
- {
- "en": "Good."
- },
- {
- "en": "Very good."
- },
- {
- "en": "Good save in war."
- },
- {
- "en": "Very good."
- },
- {
- "en": "Good for immorality only."
- },
- {
- "en": "Good especially for peace."
- },
- {
- "en": "Good."
- },
- {
- "en": "Very good."
- },
- {
- "en": "Good in all."
- },
- {
- "en": "Good for the church and ecclesiastical gain."
- },
- {
- "en": "Not very good."
- }
- ],
- "zodiacId": null,
- "elementId": "earth",
- "planetId": [
- "venus",
- "jupiter"
- ],
- "rulerId": [
- "kedemel",
- "hismael"
- ]
- },
- "carcer": {
- "id": "carcer",
- "rows": [
- 1,
- 2,
- 2,
- 1
- ],
- "title": {
- "en": "Carcer"
- },
- "translation": {
- "en": "prison"
- },
- "meaning": {
- "en": "Generally unfavourable. Delay, binding, bar, restriction."
- },
- "meanings": [
- {},
- {
- "en": "Unfavourable except to fortify a place."
- },
- {
- "en": "Good in Saturnine questions; else unfavourable."
- },
- {
- "en": "Unfavourable."
- },
- {
- "en": "Good only for melancholy."
- },
- {
- "en": "Receive a letter within three days. Unfavourable."
- },
- {
- "en": "Very unfavourable."
- },
- {
- "en": "Unfavourable."
- },
- {
- "en": "Very unfavourable."
- },
- {
- "en": "Unfavourable in all."
- },
- {
- "en": "Unfavourable save in hldden treasure."
- },
- {
- "en": "Much anxiety."
- },
- {
- "en": "Rather good."
- }
- ],
- "zodiacId": "capricorn",
- "elementId": "earth",
- "planetId": "saturn",
- "rulerId": "zazel"
- },
- "cauda_draconis": {
- "id": "cauda_draconis",
- "title": {
- "en": "Cauda Draconis"
- },
- "rows": [
- 1,
- 1,
- 1,
- 2
- ],
- "translation": {
- "en": "dragon's tail"
- },
- "meaning": {
- "en": "Good with evil, and evil with good. Good for loss, and for passing out of an affair."
- },
- "meanings": [
- {},
- {
- "en": "Destroy figure if it falls here! Makes judgment worthless."
- },
- {
- "en": "Very unfavourable."
- },
- {
- "en": "Unfavourable in all."
- },
- {
- "en": "Good especially for conclusion of the matter."
- },
- {
- "en": "Very unfavourable."
- },
- {
- "en": "Rather good."
- },
- {
- "en": "Unfavourable, war, and fire."
- },
- {
- "en": "No good, except for magic."
- },
- {
- "en": "Good for science only. Bad for journeys. Robbery."
- },
- {
- "en": "Unfavourable save in works of fire."
- },
- {
- "en": "Unfavourable save for favors."
- },
- {
- "en": "Rather good."
- }
- ],
- "zodiacId": null,
- "elementId": "fire",
- "planetId": [
- "saturn",
- "mars"
- ],
- "rulerId": [
- "zazel",
- "bartzabel"
- ]
- },
- "conjunctio": {
- "id": "conjunctio",
- "rows": [
- 2,
- 1,
- 1,
- 2
- ],
- "title": {
- "en": "Conjunctio"
- },
- "translation": {
- "en": "conjunction"
- },
- "meaning": {
- "en": "Good with good, or evil with evil. Recovery from things lost."
- },
- "meanings": [
- {},
- {
- "en": "Good with good, evil with evil."
- },
- {
- "en": "Commonly good."
- },
- {
- "en": "Good fortune."
- },
- {
- "en": "Good save for health; see the eighth."
- },
- {
- "en": "Medium."
- },
- {
- "en": "Good for immorality only."
- },
- {
- "en": "Rather good."
- },
- {
- "en": "Unfavourable, death."
- },
- {
- "en": "Medium good."
- },
- {
- "en": "For love, good. For sickness, unfavourable."
- },
- {
- "en": "Good in all."
- },
- {
- "en": "Medium. Bad for prisoners"
- }
- ],
- "zodiacId": "virgo",
- "elementId": "earth",
- "planetId": "mercury",
- "rulerId": "taphthartharath"
- },
- "fortuna_major": {
- "id": "fortuna_major",
- "rows": [
- 2,
- 2,
- 1,
- 1
- ],
- "title": {
- "en": "Fortuna Major"
- },
- "translation": {
- "en": "greater fortune"
- },
- "meaning": {
- "en": "Good for gain in all things where a person has hopes to win."
- },
- "meanings": [
- {},
- {
- "en": "Good save in secrecy."
- },
- {
- "en": "Good except in sad things."
- },
- {
- "en": "Good in all."
- },
- {
- "en": "Good in all, but melancholy."
- },
- {
- "en": "Very good in all things."
- },
- {
- "en": "Very good except for debauchery."
- },
- {
- "en": "Good in all."
- },
- {
- "en": "Moderately good."
- },
- {
- "en": "Very good."
- },
- {
- "en": "Exceedingly good. Go to superiors."
- },
- {
- "en": "Very good."
- },
- {
- "en": "Good in all."
- }
- ],
- "zodiacId": "leo",
- "elementId": "fire",
- "planetId": "sol",
- "rulerId": "sorath"
- },
- "fortuna_minor": {
- "id": "fortuna_minor",
- "rows": [
- 1,
- 1,
- 2,
- 2
- ],
- "title": {
- "en": "Fortuna Minor"
- },
- "translation": {
- "en": "lesser fortune"
- },
- "meaning": {
- "en": "Good in any manner in which a person wishes to proceed quickly."
- },
- "meanings": [
- {},
- {
- "en": "Speed in victory and in love, but choleric."
- },
- {
- "en": "Very good."
- },
- {
- "en": "Good - but wrathful."
- },
- {
- "en": "Haste; rather unfavourable except for peace."
- },
- {
- "en": "Good in all things."
- },
- {
- "en": "Medium in all."
- },
- {
- "en": "Unfavourable except for war or love."
- },
- {
- "en": "Unfavourable generally."
- },
- {
- "en": "Good, but choleric."
- },
- {
- "en": "Good, except for peace."
- },
- {
- "en": "Good, especially for love."
- },
- {
- "en": "Good, except for alternation, or for serving another."
- }
- ],
- "zodiacId": "leo",
- "elementId": "fire",
- "planetId": "sol",
- "rulerId": "sorath"
- },
- "laetitia": {
- "id": "laetitia",
- "rows": [
- 1,
- 2,
- 2,
- 2
- ],
- "title": {
- "en": "Laetitia"
- },
- "translation": {
- "en": "joy"
- },
- "meaning": {
- "en": "Good for joy, present or to come."
- },
- "meanings": [
- {},
- {
- "en": "Good, except in war."
- },
- {
- "en": "Sickly."
- },
- {
- "en": "Ill."
- },
- {
- "en": "Mainly good."
- },
- {
- "en": "Excellently good."
- },
- {
- "en": "Unfavourable generally."
- },
- {
- "en": "Indifferent."
- },
- {
- "en": "Unfavourable generally."
- },
- {
- "en": "Very good."
- },
- {
- "en": "Good, rather in war than in peace."
- },
- {
- "en": "Good in all."
- },
- {
- "en": "Unfavourable generally."
- }
- ],
- "zodiacId": "pisces",
- "elementId": "water",
- "planetId": "jupiter",
- "rulerId": "hismael"
- },
- "populus": {
- "id": "populus",
- "rows": [
- 2,
- 2,
- 2,
- 2
- ],
- "title": {
- "en": "Populus"
- },
- "translation": {
- "en": "people"
- },
- "meaning": {
- "en": "Sometimes good and sometimes bad; good with good, and evil with evil."
- },
- "meanings": [
- {},
- {
- "en": "Good in marriages."
- },
- {
- "en": "Medium good."
- },
- {
- "en": "Rather good than bad."
- },
- {
- "en": "Good in all but love."
- },
- {
- "en": "Good in most things."
- },
- {
- "en": "Good."
- },
- {
- "en": "In war good; else medium."
- },
- {
- "en": "Unfavourable."
- },
- {
- "en": "Look for letters."
- },
- {
- "en": "Good."
- },
- {
- "en": "Good in all."
- },
- {
- "en": "Very unfavourable."
- }
- ],
- "zodiacId": "cancer",
- "elementId": "water",
- "rulerId": "chasmodai",
- "planetId": "luna"
- },
- "puella": {
- "id": "puella",
- "rows": [
- 1,
- 2,
- 1,
- 1
- ],
- "title": {
- "en": "Puella"
- },
- "translation": {
- "en": "girl"
- },
- "meaning": {
- "en": "Good in all demands, especially in those relating to women."
- },
- "meanings": [
- {},
- {
- "en": "Good except in war."
- },
- {
- "en": "Very good."
- },
- {
- "en": "Good."
- },
- {
- "en": "Indifferent."
- },
- {
- "en": "Very good, but notice the aspects."
- },
- {
- "en": "Good, but especially for debauchery."
- },
- {
- "en": "Good except for war."
- },
- {
- "en": "Good."
- },
- {
- "en": "Good for music. Otherwise only medium."
- },
- {
- "en": "Good for peace."
- },
- {
- "en": "Good, and love ofladies."
- },
- {
- "en": "Good in all."
- }
- ],
- "zodiacId": "libra",
- "elementId": "air",
- "planetId": "venus",
- "rulerId": "kedemel"
- },
- "puer": {
- "id": "puer",
- "rows": [
- 1,
- 1,
- 2,
- 1
- ],
- "title": {
- "en": "Puer"
- },
- "translation": {
- "en": "boy"
- },
- "meaning": {
- "en": "Unfavourable in most demands, except in those relating to War or Love."
- },
- "meanings": [
- {},
- {
- "en": "Indifferent. Best in War."
- },
- {
- "en": "Good, but with trouble"
- },
- {
- "en": "Good fortune."
- },
- {
- "en": "Unfavourable, except in war and love."
- },
- {
- "en": "Medium good."
- },
- {
- "en": "Medium."
- },
- {
- "en": "Unfavourable, save in War."
- },
- {
- "en": "Unfavourable, save for love."
- },
- {
- "en": "Unfavourable except for War."
- },
- {
- "en": "Rather unfavourable. But good for love and War. Most other things medium."
- },
- {
- "en": "Medium; good favor."
- },
- {
- "en": "Very good in all."
- }
- ],
- "elementId": "fire",
- "zodiacId": "aries",
- "planetId": "mars",
- "rulerId": "bartzabel"
- },
- "rubeus": {
- "id": "rubeus",
- "rows": [
- 2,
- 1,
- 2,
- 2
- ],
- "title": {
- "en": "Rubeus"
- },
- "translation": {
- "en": "red"
- },
- "meaning": {
- "en": "Unfavourable in all that is good and Good in all that is Unfavourable."
- },
- "meanings": [
- {},
- {
- "en": "Destroy the figure if it falls here! It makes the judgment worthless."
- },
- {
- "en": "Unfavourable in all demands."
- },
- {
- "en": "Unfavourable except to let blood."
- },
- {
- "en": "Unfavourable except in War and Fire."
- },
- {
- "en": "Unfavourable save for love, and sowing seed."
- },
- {
- "en": "Unfavourable except for bloodletting."
- },
- {
- "en": "Unfavourable except for war and fire."
- },
- {
- "en": "Unfavourable."
- },
- {
- "en": "Very Unfavourable."
- },
- {
- "en": "Dissolute. Love, fire."
- },
- {
- "en": "Unfavourable, except to let blood."
- },
- {
- "en": "Unfavourable in all things."
- }
- ],
- "zodiacId": "scorpio",
- "elementId": "water",
- "planetId": "mars",
- "rulerId": "bartzabel"
- },
- "tristitia": {
- "id": "tristitia",
- "rows": [
- 2,
- 2,
- 2,
- 1
- ],
- "title": {
- "en": "Tristitia"
- },
- "translation": {
- "en": "sorrow"
- },
- "meaning": {
- "en": "Unfavourable in almost all things."
- },
- "meanings": [
- {},
- {
- "en": "Medium, but good for treasure and fortifying."
- },
- {
- "en": "Medium, but good to fortify."
- },
- {
- "en": "Unfavourable in all."
- },
- {
- "en": "Unfavourable in all."
- },
- {
- "en": "Very Unfavourable."
- },
- {
- "en": "Unfavourable, except for debauchery."
- },
- {
- "en": "Unfavourable for inheritance and magic only."
- },
- {
- "en": "Unfavourable, but in secrecy good."
- },
- {
- "en": "Unfavourable except for magic."
- },
- {
- "en": "Unfavourable except for fortifications."
- },
- {
- "en": "Unfavourable in all."
- },
- {
- "en": "Unfavourable. But good for magic and treasure."
- }
- ],
- "zodiacId": "aquarius",
- "elementId": "air",
- "planetId": "saturn",
- "rulerId": "zazel"
- },
- "via": {
- "id": "via",
- "rows": [
- 1,
- 1,
- 1,
- 1
- ],
- "title": {
- "en": "Via"
- },
- "translation": {
- "en": "way"
- },
- "meaning": {
- "en": "Injurious to the goodness of other figures generally, but good for journeys and voyages."
- },
- "meanings": [
- {},
- {
- "en": "Unfavourable except for prison."
- },
- {
- "en": "Indifferent."
- },
- {
- "en": "Very good in all."
- },
- {
- "en": "Good in all save love."
- },
- {
- "en": "Voyages good."
- },
- {
- "en": "Unfavourable."
- },
- {
- "en": "Rather good, especially for voyages."
- },
- {
- "en": "Unfavourable."
- },
- {
- "en": "Indifferent. good for journeys."
- },
- {
- "en": "Good."
- },
- {
- "en": "Very good."
- },
- {
- "en": "Excellent."
- }
- ],
- "zodiacId": "cancer",
- "elementId": "water",
- "planetId": "luna",
- "rulerId": "chasmodai"
- }
-}
diff --git a/data/gods.json b/data/gods.json
deleted file mode 100644
index 3409046..0000000
--- a/data/gods.json
+++ /dev/null
@@ -1,578 +0,0 @@
-{
- "source": "Liber 777 by Aleister Crowley / adamblvck/open_777 dataset",
- "description": "Divine correspondences mapped to the 32 paths of the Kabbalistic Tree of Life. Rows 1–10 are the ten Sephiroth; rows 11–32 are the 22 Hebrew letter paths. Row 0 is Ain Soph Aur (the limitless light beyond the Tree).",
- "pantheons": [
- { "id": "greek", "label": "Greek Gods", "emoji": "🏛️", "source": "Liber 777, Col. XXXIV" },
- { "id": "roman", "label": "Roman Gods", "emoji": "🦅", "source": "Liber 777, Col. XXXV" },
- { "id": "egyptian", "label": "Egyptian Gods", "emoji": "𓂀", "source": "Liber 777, Cols. XIX (Selection) & XX (Practical)" },
- { "id": "elohim", "label": "God Names", "emoji": "✡️", "source": "Liber 777, Col. V — God Names in Assiah (Sephiroth)" },
- { "id": "archangels", "label": "Archangels", "emoji": "☀️", "source": "Liber 777, Col. XCIX — Archangels of Assiah (Sephiroth)" },
- { "id": "angelicOrders", "label": "Angelic Orders", "emoji": "✨", "source": "Liber 777, Col. C — Angels of Assiah (Sephiroth)" }
- ],
- "byPath": {
- "0": {
- "type": "special",
- "label": "Ain Soph Aur",
- "description": "The Limitless Light — three veils of negative existence beyond the Tree of Life",
- "greek": "Pan",
- "roman": null,
- "egyptian": "Harpocrates, Amoun, Nuith",
- "egyptianPractical": "Heru-pa-Kraath",
- "hindu": "AUM",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "1": {
- "type": "sephirah",
- "no": 1,
- "name": "Kether",
- "meaning": "The Crown",
- "greek": "Zeus, Ikarus",
- "roman": "Jupiter",
- "egyptian": "Ptah, Asar un Nefer, Hadith",
- "egyptianPractical": "Ptah",
- "scandinavian": "Wotan",
- "hindu": "Parabrahm",
- "elohim": { "hebrew": "אהיה", "transliteration": "Eheieh", "meaning": "I Am / Being" },
- "archangel": { "hebrew": "מטטרון", "transliteration": "Metatron" },
- "angelicOrder": { "hebrew": "חיות הקדש", "transliteration": "Chaioth ha-Qodesh", "meaning": "Holy Living Creatures" }
- },
- "2": {
- "type": "sephirah",
- "no": 2,
- "name": "Chokmah",
- "meaning": "Wisdom",
- "greek": "Athena, Uranus",
- "roman": "Janus",
- "egyptian": "Amoun, Thoth, Nuith",
- "egyptianPractical": "Isis (as Wisdom)",
- "scandinavian": "Odin",
- "hindu": "Shiva, Vishnu, Akasa, Lingam",
- "elohim": { "hebrew": "יה", "transliteration": "Yah", "meaning": "The Lord" },
- "archangel": { "hebrew": "רציאל", "transliteration": "Ratziel" },
- "angelicOrder": { "hebrew": "אופנים", "transliteration": "Auphanim", "meaning": "Wheels" }
- },
- "3": {
- "type": "sephirah",
- "no": 3,
- "name": "Binah",
- "meaning": "Understanding",
- "greek": "Cybele, Demeter, Rhea, Heré, Kronos, Psyché",
- "roman": "Juno, Cybele, Hecate",
- "egyptian": "Maut, Isis, Nephthys",
- "egyptianPractical": "Nephthys",
- "scandinavian": "Frigga",
- "hindu": "Bhavani, Prana, Yoni",
- "elohim": { "hebrew": "יהוה אלהים", "transliteration": "YHVH Elohim", "meaning": "The Lord God" },
- "archangel": { "hebrew": "צאפקיאל", "transliteration": "Tzaphkiel" },
- "angelicOrder": { "hebrew": "אראלים", "transliteration": "Aralim", "meaning": "Strong and Mighty Ones / Thrones" }
- },
- "4": {
- "type": "sephirah",
- "no": 4,
- "name": "Chesed",
- "meaning": "Mercy",
- "greek": "Poseidon, Zeus",
- "roman": "Jupiter",
- "egyptian": "Amoun, Isis",
- "egyptianPractical": "Amoun",
- "scandinavian": "Wotan",
- "hindu": "Indra, Brahma",
- "elohim": { "hebrew": "אל", "transliteration": "El", "meaning": "God (the Strong)" },
- "archangel": { "hebrew": "צדקיאל", "transliteration": "Tzadkiel" },
- "angelicOrder": { "hebrew": "חשמלים", "transliteration": "Chashmalim", "meaning": "Brilliant / Shining Ones" }
- },
- "5": {
- "type": "sephirah",
- "no": 5,
- "name": "Geburah",
- "meaning": "Strength / Severity",
- "greek": "Ares, Hades",
- "roman": "Mars",
- "egyptian": "Horus, Nephthys",
- "egyptianPractical": "Horus",
- "scandinavian": "Thor",
- "hindu": "Vishnu, Varruna-Avatar",
- "elohim": { "hebrew": "אלהים גבור", "transliteration": "Elohim Gibor", "meaning": "Almighty God" },
- "archangel": { "hebrew": "כמאל", "transliteration": "Kamael" },
- "angelicOrder": { "hebrew": "שרפים", "transliteration": "Seraphim", "meaning": "Fiery Serpents" }
- },
- "6": {
- "type": "sephirah",
- "no": 6,
- "name": "Tiphareth",
- "meaning": "Beauty",
- "greek": "Ikarus, Apollo, Adonis, Dionysis, Bacchus",
- "roman": "Apollo, Bacchus, Aurora",
- "egyptian": "Asar, Ra",
- "egyptianPractical": "Ra",
- "scandinavian": null,
- "hindu": "Vishnu-Hari-Krishna-Rama",
- "elohim": { "hebrew": "יהוה אלוה ודעת", "transliteration": "YHVH Eloah ve-Daath", "meaning": "God manifest in the Sphere of the Mind" },
- "archangel": { "hebrew": "רפאל", "transliteration": "Raphael" },
- "angelicOrder": { "hebrew": "מלכים", "transliteration": "Malakim", "meaning": "Kings" }
- },
- "7": {
- "type": "sephirah",
- "no": 7,
- "name": "Netzach",
- "meaning": "Victory",
- "greek": "Aphrodite, Nike",
- "roman": "Venus",
- "egyptian": "Hathoor",
- "egyptianPractical": "Hathoor",
- "scandinavian": "Freya",
- "hindu": "Bhavani (etc.)",
- "elohim": { "hebrew": "יהוה צבאות", "transliteration": "YHVH Tzabaoth", "meaning": "The Lord of Hosts" },
- "archangel": { "hebrew": "חאניאל", "transliteration": "Haniel" },
- "angelicOrder": { "hebrew": "אלהים", "transliteration": "Elohim", "meaning": "Gods" }
- },
- "8": {
- "type": "sephirah",
- "no": 8,
- "name": "Hod",
- "meaning": "Splendour",
- "greek": "Hermes",
- "roman": "Mercury",
- "egyptian": "Anubis",
- "egyptianPractical": "Thoth",
- "scandinavian": "Odin, Loki",
- "hindu": "Hanuman",
- "elohim": { "hebrew": "אלהים צבאות", "transliteration": "Elohim Tzabaoth", "meaning": "God of Hosts" },
- "archangel": { "hebrew": "מיכאל", "transliteration": "Michael" },
- "angelicOrder": { "hebrew": "בני אלהים", "transliteration": "Beni Elohim", "meaning": "Sons of God" }
- },
- "9": {
- "type": "sephirah",
- "no": 9,
- "name": "Yesod",
- "meaning": "Foundation",
- "greek": "Zeus (as Air), Diana of Ephesus, Eros",
- "roman": "Diana (as Water), Terminus, Jupiter",
- "egyptian": "Shu, Hermanubis",
- "egyptianPractical": "Shu",
- "scandinavian": null,
- "hindu": "Ganesha, Vishnu (Kurm Avatar)",
- "elohim": { "hebrew": "שדי אל חי", "transliteration": "Shaddai El Chai", "meaning": "Almighty Living God" },
- "archangel": { "hebrew": "גבריאל", "transliteration": "Gabriel" },
- "angelicOrder": { "hebrew": "כרובים", "transliteration": "Kerubim", "meaning": "Angels of the Elements" }
- },
- "10": {
- "type": "sephirah",
- "no": 10,
- "name": "Malkuth",
- "meaning": "The Kingdom",
- "greek": "Persephone, Adonis, Psyche",
- "roman": "Ceres",
- "egyptian": "Seb, Isis and Nephthys",
- "egyptianPractical": "Osiris",
- "scandinavian": null,
- "hindu": "Lakshmi",
- "elohim": { "hebrew": "אדני מלך", "transliteration": "Adonai Melek", "meaning": "Lord and King" },
- "archangel": { "hebrew": "סנדלפון", "transliteration": "Sandalphon" },
- "angelicOrder": { "hebrew": "אשים", "transliteration": "Ashim", "meaning": "Flames / Souls of Fire" }
- },
- "11": {
- "type": "path",
- "no": 11,
- "hebrewLetter": "Aleph",
- "hebrewChar": "א",
- "tarot": "The Fool",
- "attribute": "Air",
- "greek": "Zeus",
- "roman": "Jupiter, Juno, Æolus",
- "egyptian": "Nu, Hoor-pa-kraat",
- "egyptianPractical": "Mout",
- "elohim": { "hebrew": "יהוה", "transliteration": "YHVH" },
- "archangel": null,
- "angelicOrder": null
- },
- "12": {
- "type": "path",
- "no": 12,
- "hebrewLetter": "Beth",
- "hebrewChar": "ב",
- "tarot": "The Magician",
- "attribute": "Mercury",
- "greek": "Hermes",
- "roman": "Mercury",
- "egyptian": "Thoth and Cynocephalus",
- "egyptianPractical": "Thoth",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "13": {
- "type": "path",
- "no": 13,
- "hebrewLetter": "Gimel",
- "hebrewChar": "ג",
- "tarot": "The High Priestess",
- "attribute": "Luna",
- "greek": "Artemis, Hekate",
- "roman": "Diana (as Water), Terminus, Jupiter",
- "egyptian": "Chomse",
- "egyptianPractical": "Chomse",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "14": {
- "type": "path",
- "no": 14,
- "hebrewLetter": "Daleth",
- "hebrewChar": "ד",
- "tarot": "The Empress",
- "attribute": "Venus",
- "greek": "Aphrodite",
- "roman": "Venus",
- "egyptian": "Hathor",
- "egyptianPractical": "Hathoor",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "15": {
- "type": "path",
- "no": 15,
- "hebrewLetter": "Heh",
- "hebrewChar": "ה",
- "tarot": "The Emperor",
- "attribute": "Aries",
- "greek": "Athena",
- "roman": "Mars, Minerva",
- "egyptian": "Men Thu",
- "egyptianPractical": "Isis",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "16": {
- "type": "path",
- "no": 16,
- "hebrewLetter": "Vav",
- "hebrewChar": "ו",
- "tarot": "The Hierophant",
- "attribute": "Taurus",
- "greek": "Heré",
- "roman": "Venus, Hymen",
- "egyptian": "Asar, Ameshet, Apis",
- "egyptianPractical": "Osiris",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "17": {
- "type": "path",
- "no": 17,
- "hebrewLetter": "Zayin",
- "hebrewChar": "ז",
- "tarot": "The Lovers",
- "attribute": "Gemini",
- "greek": "Castor and Pollux, Apollo the Diviner, Eros",
- "roman": "Castor and Pollux, Janus, Hymen",
- "egyptian": "Twin Deities, Rekht, Merti",
- "egyptianPractical": "The Twin Merti",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "18": {
- "type": "path",
- "no": 18,
- "hebrewLetter": "Cheth",
- "hebrewChar": "ח",
- "tarot": "The Chariot",
- "attribute": "Cancer",
- "greek": "Apollo The Charioteer",
- "roman": "Mercury, Lares and Penates",
- "egyptian": "Khephra",
- "egyptianPractical": "Hormakhu",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "19": {
- "type": "path",
- "no": 19,
- "hebrewLetter": "Teth",
- "hebrewChar": "ט",
- "tarot": "Strength",
- "attribute": "Leo",
- "greek": "Demeter",
- "roman": "Venus (Repressing Fire of Vulcan)",
- "egyptian": "Ra-Hoor-Khuit, Pasht, Sekhet, Mau",
- "egyptianPractical": "Horus",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "20": {
- "type": "path",
- "no": 20,
- "hebrewLetter": "Yod",
- "hebrewChar": "י",
- "tarot": "The Hermit",
- "attribute": "Virgo",
- "greek": "Attis",
- "roman": "Attis, Ceres, Adonis, Vesta, Flora",
- "egyptian": "Isis (as Virgin)",
- "egyptianPractical": "Heru-pa-Kraath",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "21": {
- "type": "path",
- "no": 21,
- "hebrewLetter": "Kaph",
- "hebrewChar": "כ",
- "tarot": "Wheel of Fortune",
- "attribute": "Jupiter",
- "greek": "Zeus",
- "roman": "Jupiter, Pluto",
- "egyptian": "Amoun-Ra",
- "egyptianPractical": "Amoun-Ra",
- "elohim": { "hebrew": "אבא, אל אב", "transliteration": "Abba, El Ab", "meaning": "Father, God the Father" },
- "archangel": null,
- "angelicOrder": null
- },
- "22": {
- "type": "path",
- "no": 22,
- "hebrewLetter": "Lamed",
- "hebrewChar": "ל",
- "tarot": "Justice",
- "attribute": "Libra",
- "greek": "Themis, Minos, Aecus and Rhadamanthus",
- "roman": "Vulcan, Venus, Nemesis",
- "egyptian": "Ma (Maat)",
- "egyptianPractical": "Maat",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "23": {
- "type": "path",
- "no": 23,
- "hebrewLetter": "Mem",
- "hebrewChar": "מ",
- "tarot": "The Hanged Man",
- "attribute": "Water",
- "greek": "Poseidon",
- "roman": "Neptune, Rhea",
- "egyptian": "Tum, Ptah, Auramoth, Asar, Hekar, Isis",
- "egyptianPractical": null,
- "elohim": { "hebrew": "אל", "transliteration": "El", "meaning": "God (the Strong)" },
- "archangel": null,
- "angelicOrder": null
- },
- "24": {
- "type": "path",
- "no": 24,
- "hebrewLetter": "Nun",
- "hebrewChar": "נ",
- "tarot": "Death",
- "attribute": "Scorpio",
- "greek": "Ares, Apollo the Pythean, Thanatos",
- "roman": "Mars, Mors",
- "egyptian": "Merti Goddesses, Typhon, Apep, Khephra",
- "egyptianPractical": "Hammemit",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "25": {
- "type": "path",
- "no": 25,
- "hebrewLetter": "Samekh",
- "hebrewChar": "ס",
- "tarot": "Temperance",
- "attribute": "Sagittarius",
- "greek": "Apollo, Artemis (hunters)",
- "roman": "Diana (Archer), Iris",
- "egyptian": "Nephthys",
- "egyptianPractical": null,
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "26": {
- "type": "path",
- "no": 26,
- "hebrewLetter": "Ayin",
- "hebrewChar": "ע",
- "tarot": "The Devil",
- "attribute": "Capricorn",
- "greek": "Pan, Priapus",
- "roman": "Pan, Vesta, Bacchus",
- "egyptian": "Khem, Set",
- "egyptianPractical": "Set",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "27": {
- "type": "path",
- "no": 27,
- "hebrewLetter": "Pe",
- "hebrewChar": "פ",
- "tarot": "The Tower",
- "attribute": "Mars",
- "greek": "Ares, Athena",
- "roman": "Mars",
- "egyptian": "Horus",
- "egyptianPractical": "Mentu",
- "elohim": { "hebrew": "אדני", "transliteration": "Adonai", "meaning": "My Lord" },
- "archangel": null,
- "angelicOrder": null
- },
- "28": {
- "type": "path",
- "no": 28,
- "hebrewLetter": "Tzaddi",
- "hebrewChar": "צ",
- "tarot": "The Star",
- "attribute": "Aquarius",
- "greek": "Athena, Ganymede",
- "roman": "Juno, Æolus",
- "egyptian": "Ahepi, Aroueris",
- "egyptianPractical": "Nuit",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "29": {
- "type": "path",
- "no": 29,
- "hebrewLetter": "Qoph",
- "hebrewChar": "ק",
- "tarot": "The Moon",
- "attribute": "Pisces",
- "greek": "Poseidon, Hermes Psychopompus",
- "roman": "Neptune",
- "egyptian": "Khephra (as Scarab)",
- "egyptianPractical": "Anubi",
- "elohim": null,
- "archangel": null,
- "angelicOrder": null
- },
- "30": {
- "type": "path",
- "no": 30,
- "hebrewLetter": "Resh",
- "hebrewChar": "ר",
- "tarot": "The Sun",
- "attribute": "Sol",
- "greek": "Helios, Apollo",
- "roman": "Apollo, Ops",
- "egyptian": "Ra",
- "egyptianPractical": "Ra",
- "elohim": { "hebrew": "אלה", "transliteration": "Elah", "meaning": "God" },
- "archangel": null,
- "angelicOrder": null
- },
- "31": {
- "type": "path",
- "no": 31,
- "hebrewLetter": "Shin",
- "hebrewChar": "ש",
- "tarot": "The Aeon / Judgement",
- "attribute": "Fire",
- "greek": "Hades",
- "roman": "Vulcan, Pluto",
- "egyptian": "Thoum-Aesh-Neith, Mau, Kabeshunt, Horus, Tarpesheth",
- "egyptianPractical": "Mau",
- "elohim": { "hebrew": "אלהים", "transliteration": "Elohim", "meaning": "Gods (plural)" },
- "archangel": null,
- "angelicOrder": null
- },
- "32": {
- "type": "path",
- "no": 32,
- "hebrewLetter": "Tav",
- "hebrewChar": "ת",
- "tarot": "The Universe",
- "attribute": "Saturn",
- "greek": "Athena",
- "roman": "Saturn, Terminus, Astræa",
- "egyptian": "Sebek, Mako",
- "egyptianPractical": null,
- "elohim": { "hebrew": "אב יה", "transliteration": "Ab Yah", "meaning": "Father, The Lord" },
- "archangel": null,
- "angelicOrder": null
- }
- },
- "gods": [
- {"id":"zeus","name":"Zeus","pantheon":"greek","epithet":"King of the Gods · Cloud-Gatherer · Father of Men","role":"King of the Olympian Gods; ruler of sky, thunder, and divine law","domains":["sky","thunder","lightning","law","justice","kingship","hospitality"],"parents":["Kronos (Titan)","Rhea (Titaness)"],"siblings":["Hestia","Demeter","Hera","Hades","Poseidon"],"consorts":["Hera","Metis","Themis","Mnemosyne","Demeter","Leto","many others"],"children":["Athena","Apollo","Artemis","Hermes","Ares","Hephaestus","Dionysus","Persephone","Perseus","Heracles","Minos"],"symbols":["thunderbolt","eagle","oak tree","scales","sceptre"],"sacredAnimals":["eagle","bull","swan","cuckoo"],"sacredPlaces":["Mount Olympus","Dodona","Olympia"],"equivalents":["Jupiter (Roman)"],"kabbalahPaths":[1,4,9,11,21],"description":"Zeus was the youngest son of Kronos and Rhea, hidden from his father's devouring hunger and raised in secret on Crete. After overthrowing the Titans he drew lots with his brothers: the sky fell to Zeus, the sea to Poseidon, and the underworld to Hades. His rule is based on cosmic law (themis) rather than brute force, though both are available to him.","myth":"","poem":""},
- {"id":"hera","name":"Hera","pantheon":"greek","epithet":"Queen of the Gods · Queen of Heaven · Lady of Olympus","role":"Queen of the Olympians; goddess of marriage, women, childbirth, and the loyalty of oaths","domains":["marriage","women","childbirth","royalty","sky","oaths"],"parents":["Kronos","Rhea"],"siblings":["Zeus","Poseidon","Demeter","Hestia","Hades"],"consorts":["Zeus"],"children":["Ares","Hephaestus","Hebe","Eileithyia","Enyo"],"symbols":["peacock","lily","diadem","sceptre","pomegranate","cuckoo"],"sacredAnimals":["peacock","cow","cuckoo"],"equivalents":["Juno (Roman)"],"kabbalahPaths":[3,16],"description":"Hera was swallowed at birth by Kronos like her siblings, and liberated when Zeus forced him to disgorge them. She is the eternal principle of sacred marriage and the dignity of wifely commitment. Her jealous pursuit of Zeus's lovers and illegitimate children reflects the cosmic tension between order and creative excess.","myth":"","poem":""},
- {"id":"poseidon","name":"Poseidon","pantheon":"greek","epithet":"Earth-Shaker · Lord of the Deep · Brother of Zeus","role":"God of the sea, earthquakes, storms, and horses","domains":["sea","earthquakes","storms","horses","fresh water"],"parents":["Kronos","Rhea"],"siblings":["Zeus","Hera","Demeter","Hestia","Hades"],"consorts":["Amphitrite","Demeter","Medusa","many others"],"children":["Triton","Theseus","Polyphemus","Pegasus","Chrysaor"],"symbols":["trident","horse","dolphin","bull","fish"],"sacredAnimals":["horse","dolphin","bull"],"sacredPlaces":["Corinth","Cape Sounion","Aegean Sea"],"equivalents":["Neptune (Roman)"],"kabbalahPaths":[4,23,29],"description":"Poseidon drew the sea when the universe was divided by lot. He is the great mover — earthquakes are his footsteps, storms his breath. He created the horse by striking the earth with his trident during the contest for Athens. Though he lost that contest to Athena, he remained a god respected and feared by all seafarers.","myth":"","poem":""},
- {"id":"demeter","name":"Demeter","pantheon":"greek","epithet":"Great Mother · Goddess of the Grain · Giver of Laws","role":"Goddess of the harvest, agriculture, fertility of the earth, and the sacred mysteries","domains":["harvest","grain","agriculture","fertility","seasons","sacred law","the mysteries"],"parents":["Kronos","Rhea"],"siblings":["Zeus","Hera","Poseidon","Hestia","Hades"],"consorts":["Zeus","Poseidon","Iasion"],"children":["Persephone","Arion","Plutos","Despoina"],"symbols":["sheaf of wheat","torch","cornucopia","poppy","serpent"],"sacredAnimals":["snake","pig","gecko"],"sacredPlaces":["Eleusis"],"equivalents":["Ceres (Roman)"],"kabbalahPaths":[3,10,19],"description":"Demeter governed the cycle of life and death through her daughter Persephone's abduction. When Hades took Persephone, Demeter wandered the earth in grief and nothing grew. The Eleusinian Mysteries — the most sacred rites of the ancient world — reenacted her search and reunification with Persephone, promising initiates a blessed afterlife.","myth":"","poem":""},
- {"id":"athena","name":"Athena","pantheon":"greek","epithet":"Grey-Eyed Goddess · Lady of Athens · Pallas Athena","role":"Goddess of wisdom, craft, and strategic warfare; patron of Athens and civilised life","domains":["wisdom","warfare (strategic)","crafts","weaving","justice","civilization","arts"],"parents":["Zeus","Metis (swallowed by Zeus before birth)"],"siblings":["Apollo","Artemis","Ares","Hermes","Hephaestus","Dionysus"],"consorts":[],"children":["Erichthonius (adoptive)"],"symbols":["owl","olive tree","aegis","spear","helmet","shield (Gorgoneion)"],"sacredAnimals":["owl","serpent","rooster"],"sacredPlaces":["Athens (Parthenon)","Troy","Pergamon"],"equivalents":["Minerva (Roman)"],"kabbalahPaths":[2,15,27,28,32],"description":"Born fully armoured from Zeus's forehead after he swallowed her pregnant mother Metis, Athena represents the intellect's victory over instinct. She guided heroes like Odysseus and Perseus with divine cunning rather than brute force. Her rival Poseidon struck the Acropolis to produce a salt spring; she struck it to grow an olive tree — and Athens chose her gift.","myth":"","poem":""},
- {"id":"apollo","name":"Apollo","pantheon":"greek","epithet":"Phoebus · The Far-Shooter · God of Light","role":"God of the sun, music, poetry, prophecy, healing, archery, and truth","domains":["sun","light","music","poetry","prophecy","healing","archery","truth","plague"],"parents":["Zeus","Leto (Titaness)"],"siblings":["Artemis (twin)"],"consorts":["Coronis","Cassandra (unrequited)","Hyacinthus","many others"],"children":["Asclepius","Orpheus","Ion","Aristaeus"],"symbols":["lyre","silver bow and arrows","laurel wreath","raven","python","sun disk"],"sacredAnimals":["raven","swan","dolphin","mouse","wolf"],"sacredPlaces":["Delphi","Delos"],"equivalents":["Apollo (Roman, same name)","Helios (solar aspect)"],"kabbalahPaths":[6,18,24,25,30],"description":"Apollo is the ideal of the kouros — the perfect, radiant male youth. As god of Delphi he delivered the most famous oracle in the ancient world: 'Know thyself.' His twin Artemis governs the moon while Apollo governs the sun. He also brought plague — his arrows, like the rays of the sun, could kill at a distance.","myth":"","poem":""},
- {"id":"artemis","name":"Artemis","pantheon":"greek","epithet":"Lady of the Hunt · Mistress of Animals · Phoebe","role":"Goddess of the hunt, wilderness, the moon, chastity, and the protection of young women","domains":["hunt","wilderness","moon","chastity","childbirth","protection of youth","wild nature"],"parents":["Zeus","Leto"],"siblings":["Apollo (twin)"],"consorts":[],"children":[],"symbols":["silver bow","quiver of arrows","crescent moon","torch","deer"],"sacredAnimals":["deer","bear","dogs","boar","guinea fowl"],"sacredPlaces":["Ephesus (great temple)","Brauron","Delos"],"equivalents":["Diana (Roman)"],"kabbalahPaths":[9,13,25],"description":"Artemis was the first-born twin, immediately helping her mother deliver Apollo. She demanded absolute chastity from herself and her nymphs, punishing any violation with fierce transformation — Actaeon was turned into a stag for seeing her bathing. Her great temple at Ephesus was one of the Seven Wonders of the ancient world.","myth":"","poem":""},
- {"id":"ares","name":"Ares","pantheon":"greek","epithet":"The Bloodied · Bane of Mortals · Unsated in War","role":"God of war, violence, bloodshed, and the raw courage of battle","domains":["war","violence","bloodshed","courage","civil order (through fear)"],"parents":["Zeus","Hera"],"siblings":["Hephaestus","Hebe","Eileithyia"],"consorts":["Aphrodite"],"children":["Phobos (Fear)","Deimos (Terror)","Harmonia","Anteros","Eros (some traditions)"],"symbols":["spear","shield","helmet","sword","boar","vulture"],"sacredAnimals":["dog","vulture","boar","snake","woodpecker"],"sacredPlaces":["Thrace"],"equivalents":["Mars (Roman)"],"kabbalahPaths":[5,24,27],"description":"Unlike Athena who represents strategic wisdom in war, Ares is the raw, unthinking force of conflict — violent, passionate, and bloodthirsty. He was despised by both his father Zeus and nearly all the gods for cruelty. Yet the Romans, as a martial people, honoured his equivalent Mars as one of their greatest gods and as the divine father of Romulus.","myth":"","poem":""},
- {"id":"aphrodite","name":"Aphrodite","pantheon":"greek","epithet":"Foam-Born · Golden Aphrodite · Lady of Cyprus","role":"Goddess of love, beauty, pleasure, desire, and procreation","domains":["love","beauty","desire","pleasure","fertility","procreation","the sea (born from it)"],"parents":["Born from sea-foam where Uranos's severed genitals fell, or Zeus and Dione"],"siblings":[],"consorts":["Hephaestus (husband)","Ares (lover)","Anchises","Adonis"],"children":["Eros","Anteros","Phobos","Deimos","Harmonia","Aeneas"],"symbols":["dove","sparrow","rose","myrtle","girdle","apple","mirror"],"sacredAnimals":["dove","sparrow","swan","goose","bee"],"sacredPlaces":["Cyprus (Paphos)","Cythera","Corinth"],"equivalents":["Venus (Roman)"],"kabbalahPaths":[7,14],"description":"Rising from the sea near Cyprus, Aphrodite embodies eros as a cosmic force older than the Olympians — desire that moves all creation. Her girdle could inspire desire in any being, mortal or immortal. The Trojan War began with her promise to Paris: in exchange for the golden apple of discord, she gave him the love of the most beautiful mortal woman, Helen.","myth":"","poem":""},
- {"id":"hermes","name":"Hermes","pantheon":"greek","epithet":"Psychopomp · Divine Messenger · Master Thief · Trickster","role":"Messenger of the gods; guide of souls to Hades; god of commerce, language, and boundaries","domains":["communication","travel","trade","thieves","language","boundaries","sleep","guide of souls"],"parents":["Zeus","Maia (Pleiad nymph)"],"siblings":["Apollo","Artemis","Ares","Athena","Hephaestus","Dionysus"],"consorts":["Aphrodite","Dryope","many others"],"children":["Pan","Hermaphroditus","Autolycus"],"symbols":["caduceus","winged sandals","traveller's hat (petasos)","tortoise-shell lyre","purse"],"sacredAnimals":["tortoise","rooster","ram","hawk"],"sacredPlaces":["Mount Cyllene (birthplace)"],"equivalents":["Mercury (Roman)","Thoth (Egyptian)"],"kabbalahPaths":[8,12,29],"description":"The only Olympian who moves freely between the worlds of gods, mortals, and the dead. On his first day of life he invented the lyre, stole Apollo's cattle, and negotiated his way to a position of honour among the gods. As psychopomp he guides souls to Hades. He was the patron of Hermeticism, whose practice of inner alchemy traces back to his identification with the Egyptian Thoth.","myth":"","poem":""},
- {"id":"dionysus","name":"Dionysus","pantheon":"greek","epithet":"Twice-Born · The Liberator · Bringer of Joy","role":"God of wine, ecstasy, ritual madness, theatre, and the mystery of rebirth","domains":["wine","ecstasy","theatre","ritual madness","fertility","rebirth","vegetation","mystery"],"parents":["Zeus","Semele (mortal princess of Thebes)"],"siblings":["Apollo","Hermes","Ares","Athena"],"consorts":["Ariadne"],"children":["Thoas","Staphylus","Oenopion","Phthonus"],"symbols":["thyrsos (fennel staff topped with pinecone)","grapevine","ivy","leopard skin","cup","mask"],"sacredAnimals":["bull","panther","leopard","goat","serpent","donkey"],"sacredPlaces":["Delphi (shared with Apollo)","Thebes","Naxos"],"equivalents":["Bacchus (Roman)","Osiris (Egyptian mystery parallel)"],"kabbalahPaths":[6],"description":"Born twice — first from Semele who was incinerated by Zeus's divine glory, then stitched into Zeus's thigh to gestate — Dionysus embodies the paradox of life through death and the dissolution of individual self in collective ecstasy. His journey to retrieve his mother from the underworld mirrors the initiatory death-and-rebirth pattern central to all mystery cults.","myth":"","poem":""},
- {"id":"persephone","name":"Persephone","pantheon":"greek","epithet":"Queen of the Underworld · Kore (The Maiden) · The Dread Goddess","role":"Queen of the Underworld; goddess of spring growth and the mysteries of death and rebirth","domains":["underworld","spring","vegetation","grain","death","mysteries","pomegranates"],"parents":["Zeus","Demeter"],"siblings":[],"consorts":["Hades"],"children":["Zagreus (by Zeus, in Orphic tradition)","Melinoe","Plutus (some traditions)"],"symbols":["pomegranate","narcissus","wheat","torch","flowers","bat"],"sacredAnimals":["bat","ram","parrot"],"sacredPlaces":["Eleusis (mysteries)","The Underworld itself"],"equivalents":["Proserpina (Roman)"],"kabbalahPaths":[9,10],"description":"Abducted to the Underworld by Hades while picking flowers in the meadow, Persephone ate six pomegranate seeds, binding her to spend half the year below. Her annual descent brings winter; her return brings spring. The Eleusinian Mysteries dramatised her story as a metaphor for the soul's descent, death, and triumphant ascent.","myth":"","poem":""},
- {"id":"hades","name":"Hades","pantheon":"greek","epithet":"The Unseen One · Lord of the Dead · Wealthy One","role":"God of the underworld and its mineral riches; impartial ruler of all the dead","domains":["underworld","death","wealth (metals in the earth)","the dead","invisibility"],"parents":["Kronos","Rhea"],"siblings":["Zeus","Poseidon","Hera","Demeter","Hestia"],"consorts":["Persephone"],"children":["Macaria","Melinoe","Zagreus (some traditions)"],"symbols":["Cerberus","key","bident","helmet of invisibility","narcissus","cypress","black poplar"],"sacredAnimals":["Cerberus (three-headed dog)","screech owl","serpent"],"sacredPlaces":["The Underworld","Alcyonian Lake","mouth of Avernus"],"equivalents":["Pluto (Roman)"],"kabbalahPaths":[5,31],"description":"Hades drew the underworld when he and his brothers divided creation by lot. Unlike Thanatos (death personified), Hades administers the realm of the dead — neutral and inevitable, rarely actively malevolent. The Greeks avoided speaking his name, preferring euphemisms like Plouton (Wealth-Giver) for the mineral riches that rise from the earth's depths.","myth":"","poem":""},
- {"id":"hecate","name":"Hecate","pantheon":"greek","epithet":"Triple Goddess · Mistress of Witchcraft · Queen of the Night","role":"Goddess of magic, witchcraft, crossroads, necromancy, and the liminal spaces between worlds","domains":["magic","witchcraft","crossroads","necromancy","ghosts","moon","herbs","night","liminal spaces"],"parents":["Perses (Titan)","Asteria (Titaness of Falling Stars)"],"siblings":[],"consorts":[],"children":["Scylla (some traditions)"],"symbols":["twin torches","key","dagger","rope","serpents","polecat","dogs"],"sacredAnimals":["dog","polecat","red mullet","serpent","owl"],"sacredPlaces":["crossroads (trivia)","Samothrace","Eleusis"],"equivalents":["Diana Trivia (Roman)","partial: Isis (Egyptian)"],"kabbalahPaths":[9,13],"description":"A triple goddess spanning heaven (moon), earth (nature magic), and the underworld (necromancy). She stands at crossroads — liminal spaces where worlds meet — and was propitiated at midnight with offerings left at three-way intersections. She alone heard Persephone's cries as Hades took her, and carried torches to light Demeter's search.","myth":"","poem":""},
- {"id":"pan","name":"Pan","pantheon":"greek","epithet":"All · Lord of the Wild · Panic-Bringer","role":"God of the wild, shepherds, flocks, rustic music, and natural fertility","domains":["wilderness","shepherds","flocks","nature","rustic music","fertility","hunting"],"parents":["Hermes (most common tradition)","Zeus","Kronos (various traditions)"],"siblings":[],"consorts":["many nymphs (Syrinx, Echo, Luna, Pitys)"],"children":["Silenus (some traditions)"],"symbols":["pan pipes (syrinx)","goat legs and horns","pine wreath","shepherd's staff"],"sacredAnimals":["goat","tortoise"],"sacredPlaces":["Arcadia","cave of Mount Parthenion"],"equivalents":["Faunus (Roman)"],"kabbalahPaths":[0,9,26],"description":"Pan's name means 'All' — he represents the totality of wild nature, simultaneously animalistic and divine. His sudden appearance causes 'panic' (from his name). In Liber 777 he corresponds to Ain Soph Aur — the Limitless All beyond the Tree — because he encompasses everything. In later tradition he became the horned archetype of the Devil.","myth":"","poem":""},
- {"id":"eros","name":"Eros","pantheon":"greek","epithet":"Primordial Love · The Wing'd One · Desire Before Form","role":"God of love, attraction, desire, and the generative force binding all creation","domains":["love","desire","attraction","procreation","beauty","the bonds between things"],"parents":["Chaos (primordial), or Aphrodite and Ares, or Nyx and Erebus (various traditions)"],"siblings":["Anteros","Phobos","Deimos","Harmonia"],"consorts":["Psyche"],"children":["Hedone (Pleasure)"],"symbols":["bow and golden/leaden arrows","wings","torch","lyre","roses"],"sacredAnimals":["hare","rooster"],"equivalents":["Cupid / Amor (Roman)"],"kabbalahPaths":[7,17],"description":"In the oldest cosmogonies, Eros is primordial — one of the first forces to emerge from Chaos, the attractive power that draws matter together into form. In later mythology he became the son of Aphrodite and Ares, the mischievous archer who ignites love without regard for consequence. His marriage to Psyche is one of the greatest love stories of antiquity.","myth":"","poem":""},
- {"id":"helios","name":"Helios","pantheon":"greek","epithet":"The Sun · Lord of the Light · The Seeing God","role":"Titan god of the sun; personification of the solar orb; all-seeing witness of oaths","domains":["sun","sight","light","oaths","time (as measured by solar movement)","cattle"],"parents":["Hyperion (Titan of Light)","Theia (Titaness of Sight)"],"siblings":["Selene (Moon)","Eos (Dawn)"],"consorts":["Rhode","Perse","Clymene"],"children":["Aeetes","Circe","Phaethon","Pasiphae","the Heliades (transformed into amber-weeping poplars)"],"symbols":["golden chariot of four fire-breathing horses","crown of solar rays","globe of light"],"equivalents":["Apollo (later absorbed solar functions)","Ra (Egyptian)","Sol (Roman)"],"kabbalahPaths":[30],"description":"Helios drives his golden chariot of four fire-breathing horses across the sky each day from east to west, descending into the Ocean at night and sailing beneath the earth to rise again in the east. As the all-seeing eye of heaven, he witnessed Hades' abduction of Persephone and told Demeter. His son Phaethon's disastrous attempt to drive the solar chariot scorched the earth and was struck down by Zeus.","myth":"","poem":""},
- {"id":"ikarus","name":"Ikarus","pantheon":"greek","epithet":"Winged Youth · The Overreacher · Son of Daidalos","role":"Mythic youth whose flight toward the sun became the archetype of ambition, ecstasy, and tragic excess","domains":["flight","ambition","initiation through risk","hubris","ecstatic ascent","tragic fall"],"parents":["Daidalos (Daedalus)","Naukrate (in some traditions)"],"siblings":[],"consorts":[],"children":[],"symbols":["wax wings","feathers","sun","sea"],"sacredAnimals":["gull"],"sacredPlaces":["Crete","Ikarian Sea","Sicily"],"equivalents":["Phaethon (mythic parallel of overreaching ascent)"],"kabbalahPaths":[1,6],"description":"Ikarus escaped imprisonment with his father Daidalos by means of crafted wings of feathers and wax. Ignoring the middle path between sea-damp and sun-heat, he flew too high; the wax melted and he fell into the sea that now bears his name. In esoteric interpretation he signifies the danger and necessity of aspiration: ascent is required, but unbalanced ecstasy without measure becomes ruin.","myth":"","poem":""},
- {"id":"kronos","name":"Kronos","pantheon":"greek","epithet":"Lord of Time · Harvest Titan · The Reaper","role":"Titan king; god of time, the harvest, and agricultural abundance; ruler of the Golden Age","domains":["time","harvest","agriculture","fate","the Golden Age","history"],"parents":["Uranus (Sky)","Gaia (Earth)"],"siblings":["Rhea (wife)","Oceanus","Tethys","Hyperion","Theia","Mnemosyne","Themis","others"],"consorts":["Rhea"],"children":["Zeus","Hera","Poseidon","Demeter","Hestia","Hades"],"symbols":["scythe / sickle / harpe","grain","serpent eating its tail (ouroboros)"],"equivalents":["Saturn (Roman)"],"kabbalahPaths":[3,32],"description":"Kronos castrated his father Uranus with an adamantine sickle to free his siblings from Uranus's oppression, then ruled the Golden Age of ease and plenty. But fearing a prophecy that his own children would overthrow him, he swallowed each at birth. Overthrown by Zeus after Rhea tricked him with a stone bundled as a baby, he was imprisoned in Tartarus — or in other traditions, exiled to the Isles of the Blessed to rule a realm of the heroic dead.","myth":"","poem":""},
- {"id":"uranus","name":"Uranus","pantheon":"greek","epithet":"Father Sky · The Heavens · First King","role":"Primordial god of the sky; first ruler of the cosmos; father of the Titans","domains":["sky","heaven","stars","cosmos","fate (through stars)"],"parents":["Gaia (self-born, or emerged from Chaos)"],"siblings":[],"consorts":["Gaia"],"children":["Titans (12)","Cyclopes (3: Brontes, Steropes, Arges)","Hecatoncheires (3: hundred-handed giants)","Aphrodite (born from his severed genitals)"],"symbols":["vault of the sky","stars","night sky"],"equivalents":["Caelus (Roman)"],"kabbalahPaths":[2],"description":"Uranus covered Gaia (Earth) as a lid covers a pot, and their union produced the Titans. He was so horrified by the monstrous Cyclopes and Hecatoncheires that he thrust them back into Gaia's womb, causing her tremendous suffering. Gaia persuaded her son Kronos to castrate Uranus with an adamantine sickle — from his blood the Erinyes and Giants were born, from his severed genitals thrown into the sea, Aphrodite arose.","myth":"","poem":""},
- {"id":"rhea","name":"Rhea","pantheon":"greek","epithet":"Mother of the Gods · Lady of the Wild Beasts · Great Mother","role":"Titaness of motherhood, fertility, the passage of generations, and mountain wilds","domains":["motherhood","fertility","generations","mountains","wild animals","protection of children"],"parents":["Uranus","Gaia"],"siblings":["Kronos (husband)","Oceanus","Themis","Mnemosyne","other Titans"],"consorts":["Kronos"],"children":["Zeus","Hera","Poseidon","Demeter","Hestia","Hades"],"symbols":["lions","turreted crown","drum (tympanum)","key"],"sacredAnimals":["lion","eagle"],"equivalents":["Cybele (Phrygian Great Mother)","Ops (Roman)"],"kabbalahPaths":[3,10,23],"description":"When Kronos swallowed her children one by one, Rhea hid the infant Zeus in a cave on Crete, guarded by the Curetes whose loud bronze clashing masked the child's cries. She gave Kronos a stone wrapped in swaddling cloths, which he swallowed. She represents the eternal mother who preserves life through cunning when brute power fails.","myth":"","poem":""},
- {"id":"themis","name":"Themis","pantheon":"greek","epithet":"Lady of Good Counsel · Divine Law · She Who Brought the Gods Together","role":"Titaness of divine law, order, natural law, and the oracular voice","domains":["divine law","order","custom","the oracle","justice","seasons (via her daughters)","fate (via Moirai)"],"parents":["Uranus","Gaia"],"siblings":["Kronos","Rhea","other Titans"],"consorts":["Zeus (second wife, before Hera)"],"children":["The Horae (Seasons: Eunomia, Dike, Eirene)","The Moirai (Fates: Clotho, Lachesis, Atropos)","Nemesis (some traditions)"],"symbols":["scales of justice","sword","blindfold (later addition)","cornucopia"],"equivalents":["Iustitia (Roman)"],"kabbalahPaths":[22],"description":"Themis was the second consort of Zeus after Metis. She convened the gods to assembly and maintained the cosmic order through law rather than through force. Her daughters the Moirai spun the thread of fate for every mortal, measuring and cutting it — even Zeus could not override their decree.","myth":"","poem":""},
- {"id":"nike","name":"Nike","pantheon":"greek","epithet":"Winged Victory · Daughter of the River Styx","role":"Goddess of victory, speed, and the glory that comes from achievement","domains":["victory","speed","strength","fame","success"],"parents":["Pallas (Titan)","Styx (river of the underworld)"],"siblings":["Kratos (Strength)","Bia (Force)","Zelus (Rivalry)"],"consorts":[],"children":[],"symbols":["wings","laurel wreath","palm branch","victory trophy"],"equivalents":["Victoria (Roman)"],"kabbalahPaths":[7],"description":"Nike sided with Zeus in the Titan War as her family all did, because Styx (their mother) swore her children's loyalty. Nike became the constant companion of Zeus and Athena, and was often depicted hovering over victorious athletes and armies. The winged logo of the athletic brand bears her name.","myth":"","poem":""},
- {"id":"jupiter","name":"Jupiter","pantheon":"roman","epithet":"Optimus Maximus · Best and Greatest · Father of the State","role":"King of the Roman gods; god of sky, thunder, lightning, law, and the Roman state itself","domains":["sky","thunder","lightning","justice","law","the Roman state","oaths"],"parents":["Saturn","Ops"],"siblings":["Juno","Neptune","Ceres","Pluto","Vesta"],"consorts":["Juno"],"children":["Minerva","Mars","Vulcan","Mercury","Bacchus","Diana"],"symbols":["eagle","thunderbolt","oak tree","sceptre","white bulls (his sacrifices)"],"sacredAnimals":["eagle","bull"],"sacredPlaces":["Capitoline Hill (Rome)","Mons Albanus"],"equivalents":["Zeus (Greek)"],"kabbalahPaths":[1,4,11,21],"description":"Jupiter was the supreme deity of Rome, his great temple on the Capitoline Hill the centre of Roman religion and statecraft. Generals who celebrated a triumph wore his purple robes and rode in his chariot. He protected the state through his thunderbolts and preserved the sanctity of oaths — perjury was punished directly by him.","myth":"","poem":""},
- {"id":"juno","name":"Juno","pantheon":"roman","epithet":"Regina · Queen of the Gods · Protectress of Rome","role":"Queen of the gods; goddess of marriage, women, childbirth, and the genius of the Roman state","domains":["marriage","women","the Roman state","childbirth","sky","the civic community"],"parents":["Saturn","Ops"],"siblings":["Jupiter","Neptune","Ceres","Pluto","Vesta"],"consorts":["Jupiter"],"children":["Mars","Vulcan","Juventas"],"symbols":["peacock","diadem","sceptre","pomegranate"],"sacredAnimals":["peacock","cow","cuckoo"],"equivalents":["Hera (Greek)"],"kabbalahPaths":[3,11,28],"description":"Juno Regina (Queen Juno) was the special protectress of Rome. The month of June is named for her. The sacred geese in her temple on the Capitoline Hill warned Rome of the Gallic attack in 390 BCE, saving the city. She represented the foundational importance of the institution of marriage and civic community in Roman life.","myth":"","poem":""},
- {"id":"mars","name":"Mars","pantheon":"roman","epithet":"Gradivus · Pater Martius · Divine Father of Rome","role":"God of war and agriculture; divine father of Romulus, legendary founder of Rome","domains":["war","military power","agriculture (original domain)","spring","youth","the Roman legion"],"parents":["Jupiter","Juno"],"siblings":["Vulcan","Juventas"],"consorts":["Rhea Silvia (Vestal Virgin he visited in the sacred grove)"],"children":["Romulus","Remus"],"symbols":["spear","shield (Ancile)","wolf","woodpecker","armor","oak"],"sacredAnimals":["wolf","woodpecker","horse"],"equivalents":["Ares (Greek)"],"kabbalahPaths":[5,24,27],"description":"Unlike the despised Ares, Mars was Rome's second-most-important god. As father of Romulus, he was the divine ancestor of the Roman people. The month of March (Martius) is named for him, as is Tuesday (from the Germanic Tiw, identified with Mars: Old French Mardi). Originally an agricultural deity who protected crops and cattle from blight, he became primarily martial as Rome expanded.","myth":"","poem":""},
- {"id":"venus","name":"Venus","pantheon":"roman","epithet":"Genetrix · Mother of the Roman People · Golden One","role":"Goddess of love, beauty, sex, fertility, prosperity, and the divine ancestor of Rome","domains":["love","beauty","fertility","prosperity","desire","victory","grace","+the sea (born from it)"],"parents":["born from sea-foam (as Aphrodite)"],"siblings":[],"consorts":["Vulcan (husband)","Mars (lover)","Anchises"],"children":["Cupid","Aeneas (by Anchises, Trojan hero and ancestor of Romans)"],"symbols":["dove","rose","myrtle","mirror","apple","shell"],"sacredAnimals":["dove","sparrow","swan","goose"],"sacredPlaces":["Cyprus","Eryx (Sicily)","Forum of Caesar (Rome)"],"equivalents":["Aphrodite (Greek)"],"kabbalahPaths":[7,14,16,22],"description":"Through Aeneas (son of Venus and the Trojan prince Anchises) the Romans traced their divine lineage to the gods. Julius Caesar and Augustus claimed descent from Venus. The planet Venus bears her name; the day Vendredi/Friday honours her. She was at once the universal generative force and the ancestor of the Roman imperial family.","myth":"","poem":""},
- {"id":"mercury","name":"Mercury","pantheon":"roman","epithet":"Messenger of the Gods · Lord of Commerce · Guide of Souls","role":"God of commerce, communication, thieves, travellers, eloquence, and the guide of souls to the underworld","domains":["commerce","communication","travel","thieves","messages","eloquence","psychopomp (guide of souls)"],"parents":["Jupiter","Maia"],"siblings":["Minerva","Mars","Vulcan"],"consorts":[],"children":["Cupid (some traditions)"],"symbols":["caduceus (two serpents on a staff)","winged hat (petasus)","winged sandals (talaria)","purse"],"equivalents":["Hermes (Greek)","Thoth (Egyptian parallel)"],"kabbalahPaths":[8,12],"description":"The fleet-footed messenger of the gods who escorted souls to the underworld. The Romans particularly stressed his role as god of merchants and commercial success. The planet Mercury, the metal mercury (quicksilver), and Wednesday (Mercredi in French, Mercury's day) bear his name. The caduceus — his staff of intertwined serpents — became the symbol of medicine (through confusion with Asclepius's rod).","myth":"","poem":""},
- {"id":"saturn","name":"Saturn","pantheon":"roman","epithet":"Lord of Time · God of the Golden Age · Father of Jupiter","role":"God of time, generation, wealth, dissolution, agriculture, and the memory of the Golden Age","domains":["time","generation","dissolution","wealth","agriculture","the Golden Age","the depths of earth"],"parents":["Caelus (Uranus/Sky)","Terra (Gaia/Earth)"],"siblings":["Ops (wife)","Titan equivalents"],"consorts":["Ops"],"children":["Jupiter","Juno","Neptune","Ceres","Pluto","Vesta"],"symbols":["scythe","sickle","harpe","grain","serpent eating its tail","hourglass"],"equivalents":["Kronos (Greek)"],"kabbalahPaths":[3,32],"description":"Saturn ruled the Golden Age of abundance and equality before Jupiter overthrew him. The Saturnalia festivals (December 17–23) — Rome's greatest holiday — honoured this primordial age by temporarily reversing social hierarchies: masters served slaves, gambling was legal, and gifts were exchanged. The planet Saturn, Saturday, and the metal lead bear his name.","myth":"","poem":""},
- {"id":"neptune","name":"Neptune","pantheon":"roman","epithet":"Earth-Shaker · Lord of the Seas · God of Freshwater","role":"God of the sea, storms, earthquakes, horses, and all waters","domains":["sea","freshwater","storms","earthquakes","horses"],"parents":["Saturn","Ops"],"siblings":["Jupiter","Juno","Ceres","Pluto","Vesta"],"consorts":["Amphitrite","Salacia"],"children":["Triton","Polyphemus","Proteus"],"symbols":["trident","dolphin","horse","bull","sea-green robes"],"equivalents":["Poseidon (Greek)"],"kabbalahPaths":[23,29],"description":"Neptune was originally a god of freshwater before absorbing Poseidon's marine domain. His Neptunalia festival was held in late July, when water was scarce — water was drunk from springs and arbors were built in the open air. The planet Neptune bears his name.","myth":"","poem":""},
- {"id":"diana","name":"Diana","pantheon":"roman","epithet":"Lady of Three Forms · Diana Trivia · Goddess of the Hunt","role":"Goddess of the hunt, the moon, childbirth, wilderness, and the crossroads","domains":["hunt","moon","childbirth","wilderness","chastity","crossroads","the night"],"parents":["Jupiter","Latona (Leto)"],"siblings":["Apollo (twin)"],"consorts":[],"children":[],"symbols":["crescent moon","quiver and bow","hunting dogs","torch","deer"],"equivalents":["Artemis (Greek)","triple goddess fusion with Luna and Hecate"],"kabbalahPaths":[9,13,25],"description":"Diana was a triple goddess: Diana (huntress on earth), Luna (moon in heaven), and Hecate/Trivia (crossroads/underworld). Her most ancient sanctuary was the grove at Aricia in the Alban Hills, where her priest-king won his position by killing his predecessor in single combat — a rite that fascinated the anthropologist Frazer in The Golden Bough and shaped modern comparative mythology.","myth":"","poem":""},
- {"id":"vulcan","name":"Vulcan","pantheon":"roman","epithet":"Lord of Fire · Divine Smith · God Below","role":"God of fire, metalworking, volcanoes, craft, and the power of transformation through heat","domains":["fire","forge","metalworking","volcanoes","destruction (purifying)","craft"],"parents":["Jupiter","Juno"],"siblings":["Mars","Juventas"],"consorts":["Venus"],"children":["Caeculus (some traditions)","the Cyclopes (his workers)"],"symbols":["hammer","anvil","tongs","forge","pileus (felt workman's cap)"],"equivalents":["Hephaestus (Greek)"],"kabbalahPaths":[22,31],"description":"Vulcan's forge is located beneath Mount Etna (or on the Aeolian Islands). He crafted Jupiter's thunderbolts, Achilles's divine armour, the unbreakable chains that held Prometheus, and the net in which he entrapped his adulterous wife Venus with Mars. Volcanoes bear his name. His Vulcanalia festival was held in August when fires most threatened granaries.","myth":"","poem":""},
- {"id":"janus","name":"Janus","pantheon":"roman","epithet":"God of Beginnings · Doorkeeper of Heaven · Two-Faced One","role":"God of beginnings, passages, doorways, time, duality, and all transitions","domains":["beginnings","endings","doorways","passages","time","duality","transitions","gates","bridges"],"parents":["uniquely Roman: often listed as son of Caelus or self-born from Chaos"],"siblings":[],"consorts":["Juturna (water nymph)"],"children":["Tiberinus (river god of the Tiber)","Canens","Fontus"],"symbols":["two faces (one looking forward, one back)","key","sceptre","door","staff"],"equivalents":["No Greek equivalent — uniquely Roman"],"kabbalahPaths":[2],"description":"Janus has no Greek equivalent, making him one of the most distinctively Roman gods. He looks to past and future simultaneously because he stands at every threshold. The month of January (Ianuarius) bears his name as the gateway of the year. His temple in the Roman Forum had two gates: both gates open signified Rome was at war; both closed (a rare occurrence) that peace reigned throughout the empire.","myth":"","poem":""},
- {"id":"pluto","name":"Pluto","pantheon":"roman","epithet":"The Wealthy · Rich One · God Below","role":"God of the underworld, wealth from the earth, and the dead; ruler of the realm below","domains":["underworld","wealth (minerals from earth)","the dead","dark places","seeds buried in earth"],"parents":["Saturn","Ops"],"siblings":["Jupiter","Juno","Neptune","Ceres","Vesta"],"consorts":["Proserpina"],"children":[],"symbols":["bident","helmet of darkness","Cerberus","cornucopia (from below)","keys"],"equivalents":["Hades (Greek)"],"kabbalahPaths":[21,31],"description":"Pluto (Plouton, 'the Wealthy') is the Latin name for the underworld god, emphasising the riches that come from below — metals, gems, and the fertility that seeds develop when buried. Unlike the feared Hades of the Greeks, Pluto was seen in a slightly more benign light, associated with the abundant treasure hidden underground.","myth":"","poem":""},
- {"id":"ceres","name":"Ceres","pantheon":"roman","epithet":"Mother of Crops · The Nourisher · Grain Mother","role":"Goddess of grain, agriculture, fertility, and the laws governing human civilization","domains":["grain","agriculture","fertility","the harvest","civilization","laws","motherhood"],"parents":["Saturn","Ops"],"siblings":["Jupiter","Juno","Neptune","Pluto","Vesta"],"consorts":["Jupiter"],"children":["Proserpina"],"symbols":["sheaf of grain","torch","poppy","sow (pig)","serpent","cornucopia"],"sacredAnimals":["pig","snake"],"equivalents":["Demeter (Greek)"],"kabbalahPaths":[10,20],"description":"Ceres was worshipped on the Aventine Hill in Rome alongside Liber (Dionysus) and Libera (Persephone). The Latin word 'cereal' derives from her name. The Cerealia festival each April celebrated the return of grain. Her daughter Proserpina's abduction by Pluto mirrored Demeter's search for Persephone in the Eleusinian mysteries.","myth":"","poem":""},
- {"id":"ra","name":"Ra","pantheon":"egyptian","epithet":"Lord of All · He Who Made Himself · The Great Cat · Lord of Maat","role":"Solar god and creator deity; king of the gods; the power of the sun that sustains all life","domains":["sun","creation","kingship","light","warmth","growth","the solar barque","ordering chaos"],"parents":["self-created (in most traditions)","or born from the primordial Nun (waters of chaos)"],"siblings":[],"consorts":["Hathor","Mut (in some forms)"],"children":["Shu (air) and Tefnut (moisture) in some traditions","Thoth","Hathor","Maat"],"symbols":["solar disk","sun barque","falcon head","uraeus serpent","ankh","was sceptre"],"sacredAnimals":["scarab (as Khepri at dawn)","falcon (as Ra-Horakhty at noon)","cat (battles Apophis)","Bennu bird (phoenix)"],"sacredPlaces":["Heliopolis (On)","Karnak (merged with Amun)"],"equivalents":["Apollo/Helios (Greek-Roman)"],"kabbalahPaths":[6,30],"description":"Ra traverses the sky in his solar barque by day — accompanied by his divine crew including Thoth, Maat, and Horus — and through the Duat (underworld) by night, battling the chaos-serpent Apophis to rise again each dawn. His union with Osiris in the Underworld (Ra-Osiris) represents the joining of the living sun with the regenerating power of death.","myth":"","poem":""},
- {"id":"osiris","name":"Osiris","pantheon":"egyptian","epithet":"Foremost of the Westerners · Lord of the Afterlife · The Green God","role":"God of the afterlife, resurrection, judgment, agriculture, and the cyclical renewal of life","domains":["afterlife","resurrection","judgment of souls","agriculture","fertility","vegetation","the Nile inundation"],"parents":["Geb (earth god)","Nut (sky goddess)"],"siblings":["Isis (wife)","Set (brother who killed him)","Nephthys","Horus the Elder"],"consorts":["Isis"],"children":["Horus the Younger"],"symbols":["crook and flail","white Atef crown","djed pillar","green or black skin","mummy wrappings","red throne"],"sacredAnimals":["bull (Apis)","ram","Bennu bird","Djed fish"],"sacredPlaces":["Abydos","Busiris","Philae"],"equivalents":["Dionysus (Greek mystery parallel)","Christ (resurrection parallel noted by Church Fathers)"],"kabbalahPaths":[6,10,16,23],"description":"Osiris was the first king of Egypt, the giver of agriculture and civilisation. His brother Set murdered and dismembered him out of jealousy, scattering the pieces across Egypt. Isis reassembled his body and Thoth restored it; Anubis performed the first embalming rites. Osiris was resurrected to become ruler of the dead, while his posthumously conceived son Horus inherited the throne. Every pharaoh was Horus in life and Osiris in death.","myth":"","poem":""},
- {"id":"isis","name":"Isis","pantheon":"egyptian","epithet":"Great of Magic · Lady of Ten Thousand Names · Seat of the Pharaoh","role":"Goddess of magic, healing, motherhood, fertility, the throne, and the binding force of all life","domains":["magic","healing","motherhood","fertility","the throne","wind","resurrection","nature","knowledge"],"parents":["Geb","Nut"],"siblings":["Osiris (husband)","Set","Nephthys","Horus the Elder"],"consorts":["Osiris"],"children":["Horus the Younger"],"symbols":["throne headdress","wings","ankh","sistrum","knot of Isis (tyet)","star Sirius (heralds Nile flood)"],"sacredAnimals":["cow","swallow","scorpion","kite","cobra"],"sacredPlaces":["Philae","Dendera","Behbeit el-Hagar"],"equivalents":["Demeter (maternal grief myth)","Aphrodite (love and beauty)","Athena (wisdom and magic)","later Virgin Mary (mother/son imagery)"],"kabbalahPaths":[2,3,10,15,20,23],"description":"Isis is the greatest magician in the Egyptian pantheon. She collected the scattered pieces of Osiris's body, restored him with her magic, and conceived Horus posthumously. Her cult spread throughout the Roman Empire and profoundly influenced early Christianity — the madonna-and-child iconography of Isis nursing the infant Horus shaped Christian depictions of Mary and Jesus. She was worshipped in Rome, Greece, and as far north as Britain.","myth":"","poem":""},
- {"id":"horus","name":"Horus","pantheon":"egyptian","epithet":"He Who Is Above · Falcon Lord of the Sky · Eye of Light","role":"Sky god; god of kingship and the living pharaoh; avenger of his father Osiris","domains":["sky","kingship","the pharaoh","war","protection","sun (right eye) and moon (left eye)","the horizon"],"parents":["Osiris","Isis"],"siblings":[],"consorts":["Hathor"],"children":["The Four Sons of Horus (Imsety, Hapy, Duamutef, Qebehsenuef)"],"symbols":["falcon","Eye of Horus (Wedjat/Udjat)","double crown (Pschent)","ankh","solar disk on falcon head"],"sacredAnimals":["falcon"],"sacredPlaces":["Edfu","Kom Ombo","Behdet","Hierakonpolis"],"equivalents":["Apollo (solar youth aspect)","the Christ (the son who conquers death)"],"kabbalahPaths":[5,19,27,31],"description":"Horus fought the chaos-god Set for 80 years in a series of contests to avenge his father Osiris and reclaim the throne of Egypt. In some battles his eye was torn out by Set and ground into pieces; Thoth (or Hathor) restored it — making the Eye of Horus the most potent protective symbol in all Egyptian magic. The living pharaoh was Horus incarnate; at death he became Osiris.","myth":"","poem":""},
- {"id":"set","name":"Set","pantheon":"egyptian","epithet":"Lord of Chaos · Red One · Great of Strength · The Outcast","role":"God of chaos, storms, war, deserts, foreigners, and the creative/destructive force; guardian of Ra's solar barque","domains":["chaos","storms","deserts","war","foreigners","strength","darkness","creative destruction"],"parents":["Geb","Nut"],"siblings":["Osiris (who he killed)","Isis","Nephthys (wife)","Horus the Elder"],"consorts":["Nephthys","Anat","Astarte"],"children":["Anubis (by Nephthys, in some traditions)","Upuaut (some traditions)"],"symbols":["Set-animal (a fictional creature — pointed snout, square-tipped tail, ears like a donkey)","was sceptre","red crown","red animals"],"sacredAnimals":["Set animal","ass/donkey","hippopotamus","crocodile","red animals generally","pigs","scorpions"],"sacredPlaces":["Ombos","Sepermeru","Avaris (capital of Hyksos who honored him)","the Red Land (desert)"],"equivalents":["Ares (Greek, in violence aspect)","Typhon (Greek chaos-monster)"],"kabbalahPaths":[26],"description":"Set murdered and dismembered Osiris out of jealousy for his brother's popularity and kingship. Yet Set also stood at the prow of Ra's solar barque each night, using his great strength to hold off the chaos-serpent Apophis and ensure the sun could rise. He embodies necessary creative/destructive chaos — without the desert, the fertile Nile valley could not be defined.","myth":"","poem":""},
- {"id":"nephthys","name":"Nephthys","pantheon":"egyptian","epithet":"Mistress of the House · Lady of Death · Friend of the Dead","role":"Goddess of death, mourning, night, transitions, and the service of the dead","domains":["death","mourning","night","service of the dead","protection of the dead","transitions","the horizon"],"parents":["Geb","Nut"],"siblings":["Osiris","Isis","Set","Horus the Elder"],"consorts":["Set"],"children":["Anubis (by Osiris, in some traditions)"],"symbols":["house + basket glyph on head","wings","kite (funeral bird)"],"sacredAnimals":["kite","crow","phoenix (in her mourning role)"],"equivalents":["Hecate (Greek liminal aspect)"],"kabbalahPaths":[3,5,10,25],"description":"Though married to Set, Nephthys mourned Osiris and helped Isis collect and reassemble his body. She and Isis were depicted as paired mourning birds (kites) on coffins, their outstretched wings protecting the dead. She guards the Abydos mystery plays that reenacted Osiris's death and resurrection. Her name means 'Lady of the House' — the House being the metaphorical temple-mansion of the gods.","myth":"","poem":""},
- {"id":"thoth","name":"Thoth","pantheon":"egyptian","epithet":"Ibis-Headed · Lord of Moon, Magic, and Writing · Thrice-Great","role":"God of the moon, wisdom, writing, magic, judgment, mediation, and the measurement of time","domains":["moon","wisdom","writing","magic","science","judgment of souls","mediation","time measurement","language"],"parents":["Ra (in most traditions)","self-created (in Hermopolitan tradition)"],"siblings":[],"consorts":["Ma'at","Seshat (scribal goddess)"],"children":["Seshat"],"symbols":["ibis head","crescent moon","papyrus scroll and writing palette","ankh","caduceus (as Hermes)"],"sacredAnimals":["ibis","baboon"],"sacredPlaces":["Hermopolis (Khemenu)","Tell el-Amarna"],"equivalents":["Hermes (Greek)","Mercury (Roman)","the synthesis creating Hermes Trismegistus, 'Thrice-Great', patron of Hermeticism and Western alchemy"],"kabbalahPaths":[2,8,12],"description":"Thoth invented writing, language, mathematics, astronomy, and magic. He recorded the weighing of the heart against Ma'at's feather in the Hall of Two Truths. Greek philosophy identified him with Hermes, producing Hermes Trismegistus — the legendary author of the Hermetic texts, the Corpus Hermeticum, which shaped Neoplatonism, alchemy, Kabbalah, and the Western magical tradition.","myth":"","poem":""},
- {"id":"hathor","name":"Hathor","pantheon":"egyptian","epithet":"House of Horus · Golden One · Mistress of Love · Eye of Ra","role":"Goddess of love, beauty, music, dance, fertility, the sky, and the joyful aspect of feminine divinity","domains":["love","beauty","music","dance","fertility","sky","women","the dead","drunkenness","foreign lands","gold","turquoise"],"parents":["Ra"],"siblings":[],"consorts":["Horus"],"children":["Ihy (god of music and sistrum)"],"symbols":["cow horns encircling solar disk","sistrum (rattle)","mirror","menat necklace","turquoise"],"sacredAnimals":["cow","falcon","lioness (when she becomes the Eye of Ra in her wrathful aspect, Sekhmet)"],"sacredPlaces":["Dendera","Deir el-Bahari","Serabit el-Khadim (Sinai)"],"equivalents":["Aphrodite/Venus","Isis (overlapping functions)"],"kabbalahPaths":[7,14],"description":"Hathor embodies the feminine principle in its most joyous aspect — music, dance, love, fragrance, and beauty. She also received the dead in the west and offered them bread and beer. At Dendera her cult provided medical therapies alongside ritual. When Ra sent her as Sekhmet to destroy humanity, she was stopped by being given red-dyed beer to drink, which she mistook for blood.","myth":"","poem":""},
- {"id":"anubis","name":"Anubis","pantheon":"egyptian","epithet":"Lord of the Sacred Land · He Upon His Mountain · Guardian of the Scales","role":"God of embalming, mummification, cemeteries, and the weighing of souls at judgment","domains":["embalming","mummification","the dead","cemeteries","judgment of souls","protection of graves","the Western horizon"],"parents":["Nephthys and Osiris (most common)","Set and Nephthys","Ra and Nephthys"],"siblings":["Wepwawet (Wolf-path opener)"],"consorts":["Anput"],"children":["Kebechet (purification)"],"symbols":["jackal or dog head","flail","scales (for weighing hearts)","mummy wrappings","embalming tools"],"sacredAnimals":["jackal","dog"],"sacredPlaces":["Cynopolis","the embalming tents of all Egypt"],"equivalents":["Hermes Psychopomp (Greek — the later Greeks called him Hermanubis, fusing both guides of souls)"],"kabbalahPaths":[8,29],"description":"Anubis guided souls through the Duat (underworld) and oversaw the most critical rite of Egyptian religion: the weighing of the heart against the feather of Ma'at. If the heart was heavier than the feather, the demon Ammit devoured it; if balanced, the soul entered paradise. He invented embalming when he cared for Osiris's murdered body. His sharp jackal senses could detect spiritual impurity.","myth":"","poem":""},
- {"id":"maat","name":"Ma'at","pantheon":"egyptian","epithet":"Lady of Truth · The Feather · Daughter of Ra","role":"Goddess and personification of cosmic truth, justice, balance, order, and the harmony on which all existence depends","domains":["truth","justice","balance","cosmic order","law","morality","the weighing of souls","the seasons","stars in their courses"],"parents":["Ra"],"siblings":["Thoth (consort)"],"consorts":["Thoth"],"children":[],"symbols":["ostrich feather","scales","ankh","sceptre","outstretched wings"],"equivalents":["Themis (Greek)","Astraea (Roman)","Iustitia (Roman)"],"kabbalahPaths":[22],"description":"Ma'at's single feather was the counterweight against which the heart of every deceased person was weighed. The heart (containing all one's deeds and character) had to balance precisely with the feather of truth to enter paradise. All pharaohs ruled 'in ma'at' — in truth and cosmic order. The opposite of ma'at was isfet: chaos, injustice, disorder. The entire project of Egyptian civilization was to maintain ma'at against the encroachment of isfet.","myth":"","poem":""},
- {"id":"ptah","name":"Ptah","pantheon":"egyptian","epithet":"The Beautiful Face · Lord of Truth · Father of Beginnings","role":"Creator god of Memphis; patron of craftsmen, architects, and the arts; creator through thought and logos","domains":["creation","craftsmanship","architecture","thought","speech (logos)","the arts","the Underworld's stability (as Sokar-Osiris-Ptah)"],"parents":["self-created (no parents in Memphite theology)"],"siblings":[],"consorts":["Sekhmet (lioness goddess)","Bast (cat goddess, some traditions)"],"children":["Nefertum (lotus god)","Imhotep (deified as his son)"],"symbols":["mummy wrappings (but standing upright)","was sceptre","djed pillar","straight false beard"],"sacredAnimals":["Apis bull (lived in his Memphis temple)"],"sacredPlaces":["Memphis (Hikuptah, 'temple of the ka of Ptah' — giving Egypt its name in Greek)"],"equivalents":["Hephaestus/Vulcan (craft)","the Logos principle (philosophical creation through speech)"],"kabbalahPaths":[1,23],"description":"The Memphite theology of Ptah is perhaps the most philosophically sophisticated of all ancient religious texts: Ptah created the world through his heart (thought) and tongue (speech) — a doctrine of creation by logos that anticipates both the Greek Logos concept of Plato and the opening of the Gospel of John. The name Egypt derives from the Greek corruption of 'Hikuptah' — the temple of Ptah's ka in Memphis.","myth":"","poem":""},
- {"id":"amoun","name":"Amoun (Amun)","pantheon":"egyptian","epithet":"The Hidden One · King of the Gods · Lord of the Thrones of the Two Lands","role":"King of the gods and the national deity of Egypt; god of the hidden creative force, wind, and fertility","domains":["hidden things","wind","fertility","kingship","the sun (as Amun-Ra the composite deity)","air","creation"],"parents":["self-created (primordial god of the Ogdoad of Hermopolis)"],"siblings":["Amunet (his female counterpart)"],"consorts":["Mut"],"children":["Khonsu (moon god)"],"symbols":["double plumed crown","ram horns","blue skin (the colour of invisibility)","ankh and sceptre"],"sacredAnimals":["ram","goose"],"sacredPlaces":["Karnak (Thebes) — the largest temple complex ever built","Siwa Oasis (Oracle of Amun, consulted by Alexander the Great)"],"equivalents":["Zeus/Jupiter (king of gods aspect)","identification with Ramesses II who called himself 'son of Amun'"],"kabbalahPaths":[0,2,4,21],"description":"Amun means 'the hidden one' — the creative breath behind all manifestation that cannot be seen or named directly. As Amun-Ra he united primordial hiddenness with solar radiance, becoming the most powerful god of the New Kingdom. The Oracle of Amun at Siwa was the most famous oracle in the ancient world: Alexander the Great made a legendary journey through the desert to hear it, and was told he was the son of Amun.","myth":"","poem":""},
- {"id":"khephra","name":"Khephra","pantheon":"egyptian","epithet":"The Becoming · He Who Transforms · Dawn Scarab","role":"God of the sunrise, self-transformation, self-creation, and the daily resurrection of the sun","domains":["sunrise","transformation","self-creation","resurrection","dawn","the becoming","potential"],"parents":["Ra (as dawn-aspect of the same solar deity)"],"siblings":["Ra (noon)","Atum (sunset/evening)"],"consorts":[],"children":[],"symbols":["scarab beetle rolling a ball of dung (= the sun)","solar disk above scarab","ouroboros"],"sacredAnimals":["scarab beetle (Scarabaeus sacer)"],"equivalents":["Helios (Greek dawn aspect)"],"kabbalahPaths":[18,24,29],"description":"Khephra is Ra at the moment of dawn — the scarab beetle who rolls the solar disc over the horizon just as dung beetles roll their balls of dung. The Egyptian word for 'scarab' (kheper) means 'to come into being, to become' — making Khephra the god of perpetual becoming and transformation rather than static being. Scarab amulets were the most common protective charm in ancient Egypt, placed over the heart in mummies.","myth":"","poem":""},
- {"id":"nuit","name":"Nuit","pantheon":"egyptian","epithet":"Lady of the Stars · She Who Holds a Thousand Souls · Infinite Space","role":"Goddess of the sky, night, stars, and the cosmic vault of heaven who swallows and rebirths the sun","domains":["sky","stars","night","the cosmos","afterlife (she swallows and rebirths the sun)","infinity","space"],"parents":["Shu (god of air)","Tefnut (goddess of moisture)"],"siblings":["Geb (earth god, her husband)"],"consorts":["Geb","Ra"],"children":["Osiris","Isis","Set","Nephthys","Horus the Elder"],"symbols":["star-covered body arching over the earth","blue or black skin covered with stars","pot (meaning 'sky')","coffin lids"],"equivalents":["Ouranos/Caelus (sky)","in Thelema: infinite space and the body of the goddess"],"kabbalahPaths":[0,2,28],"description":"Nuit arches her body over the earth (Geb), and the stars adorn her skin. She swallows the sun each evening and gives birth to it each morning. In the Thelemic system of Aleister Crowley (whose work inspired Liber 777), Nuit became a central cosmic deity representing infinite space, the totality of all possibilities, the night sky as the body of the goddess. Her first words in the Book of the Law: 'Every man and every woman is a star.'","myth":"","poem":""},
- {"id":"eheieh","name":"Eheieh","pantheon":"hebrew","epithet":"I Am · Pure Being · That Which Was, Is, and Will Be · Ain Soph Aur made manifest","role":"Divine Name of Kether; the first and purest emanation of existence itself; pure being without attributes","domains":["pure being","the Crown","the source","the unmoved mover","unity","the point before creation"],"hebrew":"אהיה","meaning":"I Am / I Will Be (from the root HYH, 'to be')","sephirah":1,"kabbalahPaths":[1],"description":"Eheieh (אהיה) is the divine name given to Moses at the Burning Bush — 'Eheieh asher Eheieh' (I am that I am / I will be what I will be). In Kabbalah it is the name of pure undifferentiated existence at the Crown of the Tree. It has no attributes or qualities — only the simple, inexhaustible fact of being. To vibrate this name in meditation is to touch the ground of existence itself.","myth":"","poem":""},
- {"id":"yah","name":"Yah","pantheon":"hebrew","epithet":"The Contracted Name · The Father · The Primordial Wisdom","role":"Divine Name of Chokmah; the first two letters of the Tetragrammaton; pure creative wisdom","domains":["wisdom","the Father principle","the creative impulse","the word before manifestation","the starry cosmos"],"hebrew":"יה","meaning":"The Lord (contracted form of YHVH, the first two letters Yod-Heh)","sephirah":2,"kabbalahPaths":[2],"description":"Yah is the most contracted form of the ineffable name. As the divine name of Chokmah (Wisdom), it represents the point of pure wisdom before it unfolds into understanding. Yah appears repeatedly in Psalms ('Hallelujah' = 'Praise Yah'). In Kabbalistic meditation, Yah is the name associated with the primordial Father and the cosmic seed of all creation.","myth":"","poem":""},
- {"id":"yhvh-elohim","name":"YHVH Elohim","pantheon":"hebrew","epithet":"The Lord God · Father-Mother · The Understanding","role":"Divine Name of Binah; the Lord God of Understanding; the union of the masculine name with the feminine plural","domains":["understanding","the Great Sea","the womb of creation","time","structure","the cosmic mother","sorrow and joy"],"hebrew":"יהוה אלהים","meaning":"The Lord God (masculine singular name + feminine plural noun with singular verb = grammatical paradox of divine unity in duality)","sephirah":3,"kabbalahPaths":[3],"description":"The combination of the Tetragrammaton (YHVH) with Elohim (a grammatically feminine plural used with masculine singular verbs) represents the paradoxical union of masculine and feminine in Binah, the Great Sea of Understanding. Binah is the dark womb that gives all forms to the pure wisdom of Chokmah — the primal matter that receives and shapes the divine seed.","myth":"","poem":""},
- {"id":"el","name":"El","pantheon":"hebrew","epithet":"God the Strong · The Mighty One · Ancient of Days","role":"Divine Name of Chesed; the all-powerful, all-merciful expression of divine strength turned toward blessing","domains":["mercy","strength","benevolence","grace","abundance","divine power (turned to healing not destruction)"],"hebrew":"אל","meaning":"God / The Strong One (identical root with Arabic 'Allah' and Akkadian 'Ilu')","sephirah":4,"kabbalahPaths":[4,23],"description":"El is the most ancient Semitic word for God, with cognates in every Semitic language including Arabic 'Allah.' In Kabbalah, El governs Chesed — divine mercy, boundless abundance, and the benevolent expression of power. The divine name El is the root of many angelic names: Micha-El, Gabri-El, Rapha-El, all meaning '[attribute] of God.'","myth":"","poem":""},
- {"id":"elohim-gibor","name":"Elohim Gibor","pantheon":"hebrew","epithet":"Almighty God · God of Armies · The Severe One","role":"Divine Name of Geburah; the all-powerful God who executes justice, removes what is corrupt, and tests with fire","domains":["strength","severity","justice","war","divine wrath","purification","the surgeon's knife"],"hebrew":"אלהים גבור","meaning":"Almighty God / The Mighty Gods (Elohim = plural of majesty; Gibor = mighty, hero)","sephirah":5,"kabbalahPaths":[5],"description":"Elohim Gibor represents the severe and just dimension of God — not cruelty, but the absolute necessity of cutting away what does not serve divine purpose. Geburah is the sphere of Mars, of divine warriors, of judgment that cannot be swayed by sentiment. In traditional Kabbalah, an unbalanced Geburah (too much severity) descends into cruelty; an unbalanced Chesed (too much mercy) descends into weakness.","myth":"","poem":""},
- {"id":"yhvh-eloah","name":"YHVH Eloah ve-Daath","pantheon":"hebrew","epithet":"God Manifest in Knowledge · Lord of Beauty · The Solar Heart","role":"Divine Name of Tiphareth; God made knowable; the heart of the Tree; the solar-sacrifice principle","domains":["beauty","the heart","solar consciousness","sacrifice","the son/sun","healing","harmony","the redeemed self"],"hebrew":"יהוה אלוה ודעת","meaning":"God (YHVH) manifest as Eloah (singular) in/through Da'ath (Knowledge)","sephirah":6,"kabbalahPaths":[6],"description":"This divine name speaks of God becoming personally knowable — the abstract descending into a form that conscious beings can encounter directly. Tiphareth is the solar heart of the Tree, associated with all the solar-sacrifice figures across traditions: Osiris, Dionysus, Adonis, and the Christ. At Tiphareth the initiate experiences the Knowledge and Conversation of the Holy Guardian Angel — the higher self.","myth":"","poem":""},
- {"id":"yhvh-tzabaoth","name":"YHVH Tzabaoth","pantheon":"hebrew","epithet":"Lord of Hosts · Lord of Armies · Victorious God","role":"Divine Name of Netzach; God as commander of the armies of nature, of passion, and of creative force","domains":["victory","natural forces","the passions","emotion","creativity","instinct","the armies of the divine"],"hebrew":"יהוה צבאות","meaning":"The Lord of Hosts / Armies (Tzabaoth = multitudes, hosts, armies)","sephirah":7,"kabbalahPaths":[7],"description":"Netzach represents the natural, instinctual energies — the force of desire, creativity, and natural beauty. YHVH Tzabaoth is God as the commander of all these forces. In magical work, Netzach corresponds to nature spirits, the elemental powers of creativity, and the raw material that intellect (Hod) works upon. The tension between nature (Netzach) and mind (Hod) is one of the fundamental polarities of psychological and magical work.","myth":"","poem":""},
- {"id":"elohim-tzabaoth","name":"Elohim Tzabaoth","pantheon":"hebrew","epithet":"God of Hosts · God of Splendour · Lord of the Divine Mind","role":"Divine Name of Hod; God as the source of intellect, language, magical symbolism, and divine splendour","domains":["splendour","intellect","communication","magic","the divine mind","language","symbolic thought"],"hebrew":"אלהים צבאות","meaning":"God of Hosts / God of Armies (with Elohim's grammatical feminine-plural paradox)","sephirah":8,"kabbalahPaths":[8],"description":"Hod (Splendour) governs the abstract mind, language, and magic — Hermes, Mercury, Thoth are its planetary rulers. Elohim Tzabaoth reflects Hod's diversity: the plural Elohim represents the many forms through which divine mind manifests in language, mathematics, and magical correspondence. The Hermetic arts — astrology, alchemy, ritual magic — all operate within the sphere of Hod.","myth":"","poem":""},
- {"id":"shaddai-el-chai","name":"Shaddai El Chai","pantheon":"hebrew","epithet":"Almighty Living God · The Eternal Life · Foundation of All","role":"Divine Name of Yesod; the living generative force of creation; the etheric current beneath the physical world","domains":["the living force","the etheric substratum","sexuality","the Foundation","the moon","dreams","the astral plane","fertility"],"hebrew":"שדי אל חי","meaning":"Almighty Living God (Shaddai = the Almighty, from 'breast/nourisher'; El = God; Chai = Living/Life)","sephirah":9,"kabbalahPaths":[9],"description":"Yesod is the Foundation — the invisible etheric substratum that underlies and supports material existence. Shaddai El Chai is the Living God as the perpetual creative life-force flowing through all matter. The moon governs Yesod; dreams, visions, and the astral plane are its territory. The divine name Shaddai is found on mezuzot and amulets as a protective word at every threshold.","myth":"","poem":""},
- {"id":"adonai-melek","name":"Adonai Melek","pantheon":"hebrew","epithet":"Lord and King · God of Earth · The Immanent One","role":"Divine Name of Malkuth; God as present, immanent, and incarnate in the material world itself","domains":["the Kingdom","earth","the physical world","nature","the body","the Shekinah (divine presence in the world)"],"hebrew":"אדני מלך","meaning":"Lord and King (Adonai = My Lord, used in place of YHVH in prayer; Melek = King)","sephirah":10,"kabbalahPaths":[10],"description":"Malkuth is the culmination of all the higher sephiroth made physical in matter. Adonai Melek is God present and immanent — the divine spark within physical matter, the Shekinah (the indwelling female presence of God in the world). The mystical tradition holds that the goal of the Kabbalistic path is not to escape the material world but to raise Malkuth — to reveal the Kingdom in all its divine splendour.","myth":"","poem":""},
- {"id":"metatron","name":"Metatron","pantheon":"archangel","epithet":"Chancellor of Heaven · Prince of the Divine Countenance · The Recording Angel","role":"Highest archangel; scribe of God; guardian of Kether; sometimes identified as the transformed prophet Enoch","domains":["the Crown","the divine throne","heavenly scribe who records all deeds","the angelic hierarchy","divine mysteries","transmutation of human to angelic"],"hebrew":"מטטרון","sephirah":1,"kabbalahPaths":[1],"description":"Metatron holds a unique position among angels — he was once the prophet Enoch ('he walked with God and was not, for God took him,' Genesis 5:24), transformed into the highest archangel. He is the celestial scribe who records all human deeds in the Book of Life, and is the being closest to the divine throne. Some texts describe him as so exalted that another angel mistook him for God and was corrected.","myth":"","poem":""},
- {"id":"ratziel","name":"Ratziel","pantheon":"archangel","epithet":"Herald of God · Angel of Mysteries · Keeper of Divine Secrets","role":"Archangel of Chokmah; keeper of the mysteries of divine wisdom and cosmic law","domains":["divine mysteries","cosmic law","wisdom","heavenly secrets","the stars","astrology","the primordial Torah"],"hebrew":"רציאל","sephirah":2,"kabbalahPaths":[2],"description":"Ratziel (Raziel, 'Secret of God') is said to have written the Sefer Raziel — a compendium of divine secrets overheard standing beside the throne of God. He reportedly gave this book to Adam after the Fall, warning him of the consequences of sin. Later Noah received it before the flood. The Sefer Raziel ha-Malakh is an actual medieval Kabbalistic text of angelic magic attributed to him.","myth":"","poem":""},
- {"id":"tzaphkiel","name":"Tzaphkiel","pantheon":"archangel","epithet":"Contemplation of God · The Watcher · Angel of the Abyss","role":"Archangel of Binah; the divine contemplator; angel of grief, time, structure, and profound understanding","domains":["understanding","contemplation","sorrow","time","structure","the Abyss","the nature of limitation"],"hebrew":"צאפקיאל","sephirah":3,"kabbalahPaths":[3],"description":"Tzaphkiel (Zaphkiel/Jophiel in some traditions) governs Binah — the Great Sea of Understanding, the sphere of Saturn and the divine mother. Binah is associated with sorrow not because it is negative, but because Understanding necessarily involves limitation: to understand something is to give it form and boundary, which means accepting what it is not. Tzaphkiel embodies the contemplative stillness required for this deepest kind of knowing.","myth":"","poem":""},
- {"id":"tzadkiel","name":"Tzadkiel","pantheon":"archangel","epithet":"Righteousness of God · Angel of Mercy · Interceding Angel","role":"Archangel of Chesed; divine mercy and benevolence; the angel who stayed Abraham's hand at Mount Moriah","domains":["mercy","benevolence","abundance","grace","justice turned to compassion","the virtue of charity","the planet Jupiter"],"hebrew":"צדקיאל","sephirah":4,"kabbalahPaths":[4],"description":"Tzadkiel (Zadkiel, 'Righteousness of God') governs Chesed — mercy, abundance, and expansion. He is the angel who stayed Abraham's hand before the sacrifice of Isaac, replacing the boy with a ram. He is invoked for mercy, forgiveness, and for dissolving rigid patterns with the warmth of divine love. In magical tradition he is the angel of Jupiter, associated with all forms of increase and blessing.","myth":"","poem":""},
- {"id":"kamael","name":"Kamael","pantheon":"archangel","epithet":"Strength of God · The Burning One · Angel of Divine Wrath","role":"Archangel of Geburah; the divine warrior; angel of strength, courage, justice, and the purifying fire","domains":["strength","courage","severity","divine justice","war","the removal of impurity","the planet Mars","the Seraphim"],"hebrew":"כמאל","sephirah":5,"kabbalahPaths":[5],"description":"Kamael (Camael, Chamuel — 'Strength of God') is the archangel of Geburah — divine severity and martial power. He is the warrior who executes divine justice, cuts away spiritual corruption, and governs the Seraphim (the Fiery Serpents). In some traditions he is the angel who wrestled with Jacob at the ford of Jabbok. His fire purifies what cannot be healed any other way.","myth":"","poem":""},
- {"id":"raphael","name":"Raphael","pantheon":"archangel","epithet":"God Has Healed · The Divine Physician · Angel of Healing and Travel","role":"Archangel of Tiphareth; healer of God; guide of travellers; regent of the solar heart","domains":["healing","the sun","beauty","travel","sight","the planet Mercury (in some attributions)","Tiphareth's solar warmth"],"hebrew":"רפאל","sephirah":6,"kabbalahPaths":[6],"description":"Raphael ('God Heals') is named explicitly in the Book of Tobit, where he accompanies the young Tobias disguised as a human companion, heals Tobias's blind father with fish gall, and defeats the demon Asmodeus. In the Book of Enoch he is set over all diseases and wounds. His name teaches that genuine healing is a divine act, a restoration of wholeness in alignment with the divine image.","myth":"","poem":""},
- {"id":"haniel","name":"Haniel","pantheon":"archangel","epithet":"Grace of God · Glory of God · Angel of Love and Beauty","role":"Archangel of Netzach; angel of love, beauty, the arts, natural instinct, and the planet Venus","domains":["love","beauty","joy","natural forces","the arts","desire","the planet Venus","the emotions"],"hebrew":"חאניאל","sephirah":7,"kabbalahPaths":[7],"description":"Haniel ('Grace of God') governs Netzach — the sphere of natural beauty, desire, and creative instinct. He is invoked in magical work related to love, art, and the healing of emotional wounds. In some traditions he escorted Enoch to heaven. His domain is the gap between natural desire (Netzach) and its refining by the mind (Hod) — the raw material of all art and spiritual longing.","myth":"","poem":""},
- {"id":"michael","name":"Michael","pantheon":"archangel","epithet":"Who Is Like God? · Prince of Light · Champion of Heaven","role":"Archangel of Hod; greatest of archangels; divine champion who cast Lucifer from heaven; protector against evil","domains":["protection","justice","war against evil","the angelic armies","communication","the planet Mercury","spiritual warfare","the weighing of souls (with Gabriel)"],"hebrew":"מיכאל","sephirah":8,"kabbalahPaths":[8],"description":"Michael ('Who is like God?' — the question implies: no one) is the greatest archangel in Jewish, Christian, and Islamic traditions (as Mika'il). He cast Lucifer from heaven, guarded the gate of Eden, fought with the archangel for Moses's body, and will lead the heavenly armies at the Last Battle. In Christianity he is the patron of knights, police, and the military; in Islam he brings rain and thunder. He will weigh souls at the Last Judgment.","myth":"","poem":""},
- {"id":"gabriel","name":"Gabriel","pantheon":"archangel","epithet":"God Is My Strength · The Divine Herald · Angel of Revelation","role":"Archangel of Yesod; divine messenger par excellence; angel of annunciation, prophecy, and the moon's etheric current","domains":["messages","revelation","prophecy","dreams","the moon","water","the etheric body","the Foundation","the unconscious"],"hebrew":"גבריאל","sephirah":9,"kabbalahPaths":[9],"description":"Gabriel ('God is my Strength') announced the birth of Christ to Mary (the Annunciation), revealed the Quran to Muhammad over 23 years, and explained Daniel's apocalyptic visions. He governs Yesod — the etheric substratum where dreams, visions, and psychic current flow. In the Talmud he is the angel who turned Sodom to ash. He stands at the West in elemental magic, governing Water and the psychic unconscious.","myth":"","poem":""},
- {"id":"sandalphon","name":"Sandalphon","pantheon":"archangel","epithet":"The Twin Brother · Guardian of Earth · Weaver of Prayers","role":"Archangel of Malkuth; guardian of the material earth and physical world; twin of Metatron; weaver of human prayers into garlands before the divine throne","domains":["earth","the Kingdom","physical manifestation","prayers ascending to God","the material world's sanctity","the body as temple"],"hebrew":"סנדלפון","sephirah":10,"kabbalahPaths":[10],"description":"Sandalphon corresponds to Malkuth — the physical earth — and stands as the twin polarity of Metatron at Kether. One governs the Crown, the other the Kingdom; between them stretches the entire Tree. Ancient texts describe Sandalphon as so immeasurably tall that his feet touch the earth while his head reaches into heaven — a perfect symbol of Malkuth as both the lowest and the most fully present sphere. He is said to gather all human prayers and weave them into garlands for God's crown.","myth":"","poem":""}
- ]
-}
diff --git a/data/hebrew-calendar.json b/data/hebrew-calendar.json
deleted file mode 100644
index 0087545..0000000
--- a/data/hebrew-calendar.json
+++ /dev/null
@@ -1,239 +0,0 @@
-{
- "meta": {
- "version": 1,
- "notes": "Hebrew (Jewish) lunisolar calendar months with traditional associations. Holiday records are centralized in calendar-holidays.json."
- },
- "calendar": {
- "id": "hebrew",
- "label": "Hebrew Calendar",
- "type": "lunisolar",
- "script": "Hebrew",
- "description": "The Hebrew calendar is a lunisolar calendar used for Jewish religious observances. The religious year begins with Nisan (month of Passover); the civil year begins with Tishrei. A leap year adds a second Adar (Adar II), making 13 months."
- },
- "months": [
- {
- "id": "nisan",
- "order": 1,
- "name": "Nisan",
- "nativeName": "נִיסָן",
- "days": 30,
- "season": "Spring",
- "zodiacSign": "aries",
- "tribe": "Judah",
- "sense": "Speech",
- "hebrewLetter": "He (ה)",
- "associations": {
- "zodiacSignId": "aries",
- "hebrewLetterId": "he"
- },
- "description": "The first month of the religious year. Called the 'month of redemption.' Passover (Pesach) commemorates the Exodus from Egypt."
- },
- {
- "id": "iyar",
- "order": 2,
- "name": "Iyar",
- "nativeName": "אִיָּר",
- "days": 29,
- "season": "Spring",
- "zodiacSign": "taurus",
- "tribe": "Issachar",
- "sense": "Thought",
- "hebrewLetter": "Vav (ו)",
- "associations": {
- "zodiacSignId": "taurus",
- "hebrewLetterId": "vav"
- },
- "description": "A month of counting and transition between Passover and Shavuot. Yom HaShoah and Yom Ha'atzmaut fall here."
- },
- {
- "id": "sivan",
- "order": 3,
- "name": "Sivan",
- "nativeName": "סִיוָן",
- "days": 30,
- "season": "Late Spring",
- "zodiacSign": "gemini",
- "tribe": "Zebulun",
- "sense": "Walking",
- "hebrewLetter": "Zayin (ז)",
- "associations": {
- "zodiacSignId": "gemini",
- "hebrewLetterId": "zayin"
- },
- "description": "Month of the giving of the Torah at Sinai. Shavuot (Festival of Weeks) falls on the 6th."
- },
- {
- "id": "tammuz",
- "order": 4,
- "name": "Tammuz",
- "nativeName": "תַּמּוּז",
- "days": 29,
- "season": "Summer",
- "zodiacSign": "cancer",
- "tribe": "Reuben",
- "sense": "Sight",
- "hebrewLetter": "Het (ח)",
- "associations": {
- "zodiacSignId": "cancer",
- "hebrewLetterId": "het"
- },
- "description": "A month associated with mourning. The Golden Calf was made and the Tablets were broken on the 17th."
- },
- {
- "id": "av",
- "order": 5,
- "name": "Av",
- "nativeName": "אָב",
- "days": 30,
- "season": "Summer",
- "zodiacSign": "leo",
- "tribe": "Simeon",
- "sense": "Hearing",
- "hebrewLetter": "Tet (ט)",
- "associations": {
- "zodiacSignId": "leo",
- "hebrewLetterId": "tet"
- },
- "description": "A month of mourning that ends with celebration. Tisha B'Av commemorates the destruction of both Temples."
- },
- {
- "id": "elul",
- "order": 6,
- "name": "Elul",
- "nativeName": "אֱלוּל",
- "days": 29,
- "season": "Late Summer",
- "zodiacSign": "virgo",
- "tribe": "Gad",
- "sense": "Action",
- "hebrewLetter": "Yod (י)",
- "associations": {
- "zodiacSignId": "virgo",
- "hebrewLetterId": "yod"
- },
- "description": "A month of preparation and teshuva (repentance) before the High Holy Days. The shofar is blown daily."
- },
- {
- "id": "tishrei",
- "order": 7,
- "name": "Tishrei",
- "nativeName": "תִּשְׁרֵי",
- "days": 30,
- "season": "Autumn",
- "zodiacSign": "libra",
- "tribe": "Ephraim",
- "sense": "Coition",
- "hebrewLetter": "Lamed (ל)",
- "associations": {
- "zodiacSignId": "libra",
- "hebrewLetterId": "lamed"
- },
- "description": "The holiest month of the year. Contains Rosh Hashanah (New Year), Yom Kippur (Day of Atonement), and Sukkot."
- },
- {
- "id": "cheshvan",
- "order": 8,
- "name": "Cheshvan",
- "nativeName": "חֶשְׁוָן",
- "days": 29,
- "daysVariant": 30,
- "season": "Autumn",
- "zodiacSign": "scorpio",
- "tribe": "Manasseh",
- "sense": "Smell",
- "hebrewLetter": "Nun (נ)",
- "associations": {
- "zodiacSignId": "scorpio",
- "hebrewLetterId": "nun"
- },
- "description": "Also called Marcheshvan. The only month with no Jewish holidays. Day count varies between 29–30 in different years."
- },
- {
- "id": "kislev",
- "order": 9,
- "name": "Kislev",
- "nativeName": "כִּסְלֵו",
- "days": 30,
- "daysVariant": 29,
- "season": "Early Winter",
- "zodiacSign": "sagittarius",
- "tribe": "Benjamin",
- "sense": "Sleep",
- "hebrewLetter": "Samekh (ס)",
- "associations": {
- "zodiacSignId": "sagittarius",
- "hebrewLetterId": "samekh"
- },
- "description": "Month of Hanukkah (Festival of Lights), which begins on the 25th. Day count varies 29–30."
- },
- {
- "id": "tevet",
- "order": 10,
- "name": "Tevet",
- "nativeName": "טֵבֵת",
- "days": 29,
- "season": "Winter",
- "zodiacSign": "capricorn",
- "tribe": "Dan",
- "sense": "Anger",
- "hebrewLetter": "Ayin (ע)",
- "associations": {
- "zodiacSignId": "capricorn",
- "hebrewLetterId": "ayin"
- },
- "description": "Hanukkah continues into the early days of Tevet. The 10th is a fast day marking the siege of Jerusalem."
- },
- {
- "id": "shvat",
- "order": 11,
- "name": "Shvat",
- "nativeName": "שְׁבָט",
- "days": 30,
- "season": "Late Winter",
- "zodiacSign": "aquarius",
- "tribe": "Asher",
- "sense": "Taste",
- "hebrewLetter": "Tzaddi (צ)",
- "associations": {
- "zodiacSignId": "aquarius",
- "hebrewLetterId": "tsadi"
- },
- "description": "The month of Tu B'Shvat, the 'New Year for Trees.' Trees begin to wake in the Land of Israel."
- },
- {
- "id": "adar",
- "order": 12,
- "name": "Adar (Adar I)",
- "nativeName": "אֲדָר",
- "days": 29,
- "season": "Late Winter / Early Spring",
- "zodiacSign": "pisces",
- "tribe": "Naphtali",
- "sense": "Laughter",
- "hebrewLetter": "Qof (ק)",
- "associations": {
- "zodiacSignId": "pisces",
- "hebrewLetterId": "qof"
- },
- "description": "A month of joy. Purim falls on the 14th. In a leap year this becomes Adar I and Purim is celebrated in Adar II."
- },
- {
- "id": "adar-ii",
- "order": 13,
- "name": "Adar II",
- "nativeName": "אֲדָר ב",
- "days": 29,
- "leapYearOnly": true,
- "season": "Early Spring",
- "zodiacSign": "pisces",
- "tribe": "Naphtali",
- "sense": "Laughter",
- "hebrewLetter": "Qof (ק)",
- "associations": {
- "zodiacSignId": "pisces",
- "hebrewLetterId": "qof"
- },
- "description": "Added in a Hebrew leap year (7 times in every 19-year Metonic cycle). Purim is celebrated in Adar II in leap years."
- }
- ]
-}
diff --git a/data/hebrewLetters.json b/data/hebrewLetters.json
deleted file mode 100644
index 184d17b..0000000
--- a/data/hebrewLetters.json
+++ /dev/null
@@ -1,353 +0,0 @@
-{
- "alef": {
- "id": "alef",
- "letter": {
- "he": "א",
- "name": "Aleph",
- "latin": "A"
- },
- "index": 1,
- "value": 1,
- "meaning": {
- "en": "ox"
- }
- },
- "bet": {
- "id": "bet",
- "letter": {
- "he": "ב",
- "name": "Bet",
- "latin": "B"
- },
- "index": 2,
- "value": 2,
- "meaning": {
- "en": "house"
- }
- },
- "gimel": {
- "id": "gimel",
- "letter": {
- "he": "ג",
- "name": "Gimel",
- "latin": "G"
- },
- "index": 3,
- "value": 3,
- "meaning": {
- "en": "camel"
- }
- },
- "dalet": {
- "id": "dalet",
- "letter": {
- "he": "ד",
- "name": "Dalet",
- "latin": "D"
- },
- "index": 4,
- "value": 4,
- "meaning": {
- "en": "door"
- }
- },
- "he": {
- "id": "he",
- "letter": {
- "he": "ה",
- "name": "He",
- "latin": "H"
- },
- "index": 5,
- "value": 5,
- "meaning": {
- "en": "window"
- }
- },
- "vav": {
- "id": "vav",
- "letter": {
- "he": "ו",
- "name": "Vav",
- "latin": "V"
- },
- "index": 6,
- "value": 6,
- "meaning": {
- "en": "peg, nail, pin, hook"
- }
- },
- "zayin": {
- "id": "zayin",
- "letter": {
- "he": "ז",
- "name": "Zayin",
- "latin": "Z"
- },
- "index": 7,
- "value": 7,
- "meaning": {
- "en": "sword, armor, weapon"
- }
- },
- "het": {
- "id": "het",
- "letter": {
- "he": "ח",
- "name": "Het",
- "latin": "Ch"
- },
- "index": 8,
- "value": 8,
- "meaning": {
- "en": "enclosure, fence"
- }
- },
- "tet": {
- "id": "tet",
- "letter": {
- "he": "ט",
- "name": "Tet",
- "latin": "T"
- },
- "index": 9,
- "value": 9,
- "meaning": {
- "en": "serpent"
- }
- },
- "yod": {
- "id": "yod",
- "letter": {
- "he": "י",
- "name": "Yod",
- "latin": "I"
- },
- "index": 10,
- "value": 10,
- "meaning": {
- "en": "hand"
- }
- },
- "kaf": {
- "id": "kaf",
- "letter": {
- "he": "כ",
- "name": "Kaf",
- "latin": "K"
- },
- "index": 11,
- "value": 20,
- "meaning": {
- "en": "palm of hand"
- }
- },
- "kaf-sofit": {
- "id": "kaf-sofit",
- "letter": {
- "he": "ך",
- "name": "Kaf-Sofit",
- "latin": "K(f)"
- },
- "index": 11,
- "value": 500,
- "meaning": {
- "en": "palm of hand"
- }
- },
- "lamed": {
- "id": "lamed",
- "letter": {
- "he": "ל",
- "name": "Lamed",
- "latin": "L"
- },
- "index": 12,
- "value": 30,
- "meaning": {
- "en": "ox-goad"
- }
- },
- "mem": {
- "id": "mem",
- "letter": {
- "he": "מ",
- "name": "Mem",
- "latin": "M"
- },
- "index": 13,
- "value": 40,
- "meaning": {
- "en": "water"
- }
- },
- "mem-sofit": {
- "id": "mem-sofit",
- "letter": {
- "he": "ם",
- "name": "Mem-Sofit",
- "latin": "M(f)"
- },
- "index": 13,
- "value": 600,
- "meaning": {
- "en": "water"
- }
- },
- "nun": {
- "id": "nun",
- "letter": {
- "he": "נ",
- "name": "Nun",
- "latin": "N"
- },
- "index": 14,
- "value": 50,
- "meaning": {
- "en": "fish"
- }
- },
- "nun-sofit": {
- "id": "nun-sofit",
- "letter": {
- "he": "ן",
- "name": "Nun-Sofit",
- "latin": "N(f)"
- },
- "index": 14,
- "value": 700,
- "meaning": {
- "en": "fish"
- }
- },
- "samekh": {
- "id": "samekh",
- "letter": {
- "he": "ס",
- "name": "Samekh",
- "latin": "S"
- },
- "index": 15,
- "value": 60,
- "meaning": {
- "en": "prop, support"
- }
- },
- "ayin": {
- "id": "ayin",
- "letter": {
- "he": "ע",
- "name": "Ayin",
- "latin": "O"
- },
- "index": 16,
- "value": 70,
- "meaning": {
- "en": "eye"
- }
- },
- "pe": {
- "id": "pe",
- "letter": {
- "he": "פ",
- "name": "Pe",
- "latin": "P"
- },
- "index": 17,
- "value": 80,
- "meaning": {
- "en": "mouth"
- }
- },
- "pe-sofit": {
- "id": "pe-sofit",
- "letter": {
- "he": "ף",
- "name": "Pe-Sofit",
- "latin": "P(f)"
- },
- "index": 17,
- "value": 800,
- "meaning": {
- "en": "mouth"
- }
- },
- "tsadi": {
- "id": "tsadi",
- "letter": {
- "he": "צ",
- "name": "Tsadi",
- "latin": "Tz"
- },
- "index": 18,
- "value": 90,
- "meaning": {
- "en": "fishhook"
- }
- },
- "tsadi-sofit": {
- "id": "tsadi-sofit",
- "letter": {
- "he": "ץ",
- "name": "Tsadi-Sofit",
- "latin": "Tz(f)"
- },
- "index": 18,
- "value": 900,
- "meaning": {
- "en": "fishhook"
- }
- },
- "qof": {
- "id": "qof",
- "letter": {
- "he": "ק",
- "name": "Qof",
- "latin": "Q"
- },
- "index": 19,
- "value": 100,
- "meaning": {
- "en": "back of the head, ear"
- }
- },
- "resh": {
- "id": "resh",
- "letter": {
- "he": "ר",
- "name": "Resh",
- "latin": "R"
- },
- "index": 20,
- "value": 200,
- "meaning": {
- "en": "head"
- }
- },
- "shin": {
- "id": "shin",
- "letter": {
- "he": "ש",
- "name": "Shin",
- "latin": "Sh"
- },
- "index": 21,
- "value": 300,
- "meaning": {
- "en": "tooth"
- }
- },
- "tav": {
- "id": "tav",
- "letter": {
- "he": "ת",
- "name": "Tav",
- "latin": "Th"
- },
- "index": 22,
- "value": 400,
- "meaning": {
- "en": "cross"
- }
- }
-}
diff --git a/data/i-ching.json b/data/i-ching.json
deleted file mode 100644
index c778ee7..0000000
--- a/data/i-ching.json
+++ /dev/null
@@ -1,1581 +0,0 @@
-{
- "meta": {
- "source": "iChing.py",
- "notes": "Extracted from Python I Ching specs for web dataset view. Included Tarot↔I Ching correspondences extracted from DOCX table."
- },
- "trigrams": [
- {
- "name": "Qian",
- "chineseName": "乾",
- "pinyin": "Qián",
- "element": "Heaven",
- "attribute": "Creative",
- "binary": "111",
- "description": "Pure yang drive that initiates action.",
- "lineDiagram": "|||"
- },
- {
- "name": "Dui",
- "chineseName": "兑",
- "pinyin": "Duì",
- "element": "Lake",
- "attribute": "Joyous",
- "binary": "011",
- "description": "Open delight that invites community.",
- "lineDiagram": "||:"
- },
- {
- "name": "Li",
- "chineseName": "离",
- "pinyin": "Lí",
- "element": "Fire",
- "attribute": "Clinging",
- "binary": "101",
- "description": "Radiant clarity that adheres to insight.",
- "lineDiagram": "|:|"
- },
- {
- "name": "Zhen",
- "chineseName": "震",
- "pinyin": "Zhèn",
- "element": "Thunder",
- "attribute": "Arousing",
- "binary": "001",
- "description": "Sudden awakening that shakes stagnation.",
- "lineDiagram": "|::"
- },
- {
- "name": "Xun",
- "chineseName": "巽",
- "pinyin": "Xùn",
- "element": "Wind",
- "attribute": "Gentle",
- "binary": "110",
- "description": "Penetrating influence that persuades subtly.",
- "lineDiagram": ":||"
- },
- {
- "name": "Kan",
- "chineseName": "坎",
- "pinyin": "Kǎn",
- "element": "Water",
- "attribute": "Abysmal",
- "binary": "010",
- "description": "Depth, risk, and sincere feeling.",
- "lineDiagram": ":|:"
- },
- {
- "name": "Gen",
- "chineseName": "艮",
- "pinyin": "Gèn",
- "element": "Mountain",
- "attribute": "Stillness",
- "binary": "100",
- "description": "Grounded rest that establishes boundaries.",
- "lineDiagram": "::|"
- },
- {
- "name": "Kun",
- "chineseName": "坤",
- "pinyin": "Kūn",
- "element": "Earth",
- "attribute": "Receptive",
- "binary": "000",
- "description": "Vast receptivity that nurtures form.",
- "lineDiagram": ":::"
- },
- {
- "name": "Xuan",
- "chineseName": "玄",
- "pinyin": "Xuán",
- "element": "Spirit",
- "attribute": "Spirit Helper",
- "special": true,
- "description": "A liminal spiritual force that assists the magician; not counted among the eight classic trigrams."
- },
- {
- "name": "XuanWind",
- "chineseName": "玄風",
- "pinyin": "Xuán Fēng",
- "element": "Spirit Wind",
- "attribute": "Subtle Force",
- "special": true,
- "description": "Xuan fused with Wind: transformative, liminal passage between states."
- }
- ],
- "hexagrams": [
- {
- "number": 1,
- "name": "Creative Force",
- "chineseName": "乾",
- "pinyin": "Qián",
- "judgement": "Initiative succeeds when anchored in integrity.",
- "image": "Heaven above and below mirrors unstoppable drive.",
- "upperTrigram": "Qian",
- "lowerTrigram": "Qian",
- "keywords": [
- "Leadership",
- "Momentum",
- "Clarity"
- ],
- "planetaryInfluence": "Sun",
- "binary": "111111",
- "lineDiagram": "||||||"
- },
- {
- "number": 2,
- "name": "Receptive Field",
- "chineseName": "坤",
- "pinyin": "Kūn",
- "judgement": "Grounded support flourishes through patience.",
- "image": "Earth layered upon earth offers fertile space.",
- "upperTrigram": "Kun",
- "lowerTrigram": "Kun",
- "keywords": [
- "Nurture",
- "Support",
- "Yielding"
- ],
- "planetaryInfluence": "Moon",
- "binary": "000000",
- "lineDiagram": "::::::"
- },
- {
- "number": 3,
- "name": "Sprouting",
- "chineseName": "屯",
- "pinyin": "Zhūn",
- "judgement": "Challenges at the start need perseverance.",
- "image": "Water over thunder shows storms that germinate seeds.",
- "upperTrigram": "Kan",
- "lowerTrigram": "Zhen",
- "keywords": [
- "Beginnings",
- "Struggle",
- "Resolve"
- ],
- "planetaryInfluence": "Mercury",
- "binary": "010001",
- "lineDiagram": "|:::|:"
- },
- {
- "number": 4,
- "name": "Youthful Insight",
- "chineseName": "蒙",
- "pinyin": "Méng",
- "judgement": "Ignorance yields to steady guidance.",
- "image": "Mountain above water signals learning via restraint.",
- "upperTrigram": "Gen",
- "lowerTrigram": "Kan",
- "keywords": [
- "Study",
- "Mentorship",
- "Humility"
- ],
- "planetaryInfluence": "Venus",
- "binary": "100010",
- "lineDiagram": ":|:::|"
- },
- {
- "number": 5,
- "name": "Waiting",
- "chineseName": "需",
- "pinyin": "Xū",
- "judgement": "Hold position until nourishment arrives.",
- "image": "Water above heaven depicts clouds gathering provision.",
- "upperTrigram": "Kan",
- "lowerTrigram": "Qian",
- "keywords": [
- "Patience",
- "Faith",
- "Preparation"
- ],
- "planetaryInfluence": "Mars",
- "binary": "010111",
- "lineDiagram": "|||:|:"
- },
- {
- "number": 6,
- "name": "Conflict",
- "chineseName": "訟",
- "pinyin": "Sòng",
- "judgement": "Clarity and fairness prevent escalation.",
- "image": "Heaven above water shows tension seeking balance.",
- "upperTrigram": "Qian",
- "lowerTrigram": "Kan",
- "keywords": [
- "Debate",
- "Justice",
- "Boundaries"
- ],
- "planetaryInfluence": "Jupiter",
- "binary": "111010",
- "lineDiagram": ":|:|||"
- },
- {
- "number": 7,
- "name": "Collective Force",
- "chineseName": "師",
- "pinyin": "Shī",
- "judgement": "Coordinated effort requires disciplined leadership.",
- "image": "Earth over water mirrors troops marshaling supplies.",
- "upperTrigram": "Kun",
- "lowerTrigram": "Kan",
- "keywords": [
- "Discipline",
- "Leadership",
- "Community"
- ],
- "planetaryInfluence": "Saturn",
- "binary": "000010",
- "lineDiagram": ":|::::"
- },
- {
- "number": 8,
- "name": "Union",
- "chineseName": "比",
- "pinyin": "Bǐ",
- "judgement": "Shared values attract loyal allies.",
- "image": "Water over earth highlights bonds formed through empathy.",
- "upperTrigram": "Kan",
- "lowerTrigram": "Kun",
- "keywords": [
- "Alliance",
- "Affinity",
- "Trust"
- ],
- "planetaryInfluence": "Earth",
- "binary": "010000",
- "lineDiagram": "::::|:"
- },
- {
- "number": 9,
- "name": "Small Accumulating",
- "chineseName": "小畜",
- "pinyin": "Xiǎo Chù",
- "judgement": "Gentle restraint nurtures gradual gains.",
- "image": "Wind over heaven indicates tender guidance on great power.",
- "upperTrigram": "Xun",
- "lowerTrigram": "Qian",
- "keywords": [
- "Restraint",
- "Cultivation",
- "Care"
- ],
- "planetaryInfluence": "Sun",
- "binary": "110111",
- "lineDiagram": "|||:||"
- },
- {
- "number": 10,
- "name": "Treading",
- "chineseName": "履",
- "pinyin": "Lǚ",
- "judgement": "Walk with awareness when near power.",
- "image": "Heaven over lake shows respect between ranks.",
- "upperTrigram": "Qian",
- "lowerTrigram": "Dui",
- "keywords": [
- "Conduct",
- "Respect",
- "Sensitivity"
- ],
- "planetaryInfluence": "Moon",
- "binary": "111011",
- "lineDiagram": "||:|||"
- },
- {
- "number": 11,
- "name": "Peace",
- "chineseName": "泰",
- "pinyin": "Tài",
- "judgement": "Harmony thrives when resources circulate freely.",
- "image": "Earth over heaven signals prosperity descending.",
- "upperTrigram": "Kun",
- "lowerTrigram": "Qian",
- "keywords": [
- "Harmony",
- "Prosperity",
- "Flourish"
- ],
- "planetaryInfluence": "Mercury",
- "binary": "000111",
- "lineDiagram": "|||:::"
- },
- {
- "number": 12,
- "name": "Standstill",
- "chineseName": "否",
- "pinyin": "Pǐ",
- "judgement": "When channels close, conserve strength.",
- "image": "Heaven over earth reveals blocked exchange.",
- "upperTrigram": "Qian",
- "lowerTrigram": "Kun",
- "keywords": [
- "Stagnation",
- "Reflection",
- "Pause"
- ],
- "planetaryInfluence": "Venus",
- "binary": "111000",
- "lineDiagram": ":::|||"
- },
- {
- "number": 13,
- "name": "Fellowship",
- "chineseName": "同人",
- "pinyin": "Tóng Rén",
- "judgement": "Shared purpose unites distant hearts.",
- "image": "Heaven over fire shows clarity within community.",
- "upperTrigram": "Qian",
- "lowerTrigram": "Li",
- "keywords": [
- "Community",
- "Shared Vision",
- "Openness"
- ],
- "planetaryInfluence": "Mars",
- "binary": "111101",
- "lineDiagram": "|:||||"
- },
- {
- "number": 14,
- "name": "Great Possession",
- "chineseName": "大有",
- "pinyin": "Dà Yǒu",
- "judgement": "Generosity cements lasting influence.",
- "image": "Fire over heaven reflects radiance sustained by ethics.",
- "upperTrigram": "Li",
- "lowerTrigram": "Qian",
- "keywords": [
- "Wealth",
- "Stewardship",
- "Confidence"
- ],
- "planetaryInfluence": "Jupiter",
- "binary": "101111",
- "lineDiagram": "||||:|"
- },
- {
- "number": 15,
- "name": "Modesty",
- "chineseName": "謙",
- "pinyin": "Qiān",
- "judgement": "Balance is found by lowering the proud.",
- "image": "Earth over mountain reveals humility safeguarding strength.",
- "upperTrigram": "Kun",
- "lowerTrigram": "Gen",
- "keywords": [
- "Humility",
- "Balance",
- "Service"
- ],
- "planetaryInfluence": "Saturn",
- "binary": "000100",
- "lineDiagram": "::|:::"
- },
- {
- "number": 16,
- "name": "Enthusiasm",
- "chineseName": "豫",
- "pinyin": "Yù",
- "judgement": "Inspired music rallies the people.",
- "image": "Thunder over earth depicts drums stirring hearts.",
- "upperTrigram": "Zhen",
- "lowerTrigram": "Kun",
- "keywords": [
- "Inspiration",
- "Celebration",
- "Momentum"
- ],
- "planetaryInfluence": "Earth",
- "binary": "001000",
- "lineDiagram": ":::|::"
- },
- {
- "number": 17,
- "name": "Following",
- "chineseName": "隨",
- "pinyin": "Suí",
- "judgement": "Adapt willingly to timely leadership.",
- "image": "Lake over thunder points to joyful allegiance.",
- "upperTrigram": "Dui",
- "lowerTrigram": "Zhen",
- "keywords": [
- "Adaptation",
- "Loyalty",
- "Flow"
- ],
- "planetaryInfluence": "Sun",
- "binary": "011001",
- "lineDiagram": "|::||:"
- },
- {
- "number": 18,
- "name": "Repairing",
- "chineseName": "蠱",
- "pinyin": "Gǔ",
- "judgement": "Address decay with responsibility and care.",
- "image": "Mountain over wind shows correction of lineages.",
- "upperTrigram": "Gen",
- "lowerTrigram": "Xun",
- "keywords": [
- "Restoration",
- "Accountability",
- "Healing"
- ],
- "planetaryInfluence": "Moon",
- "binary": "100110",
- "lineDiagram": ":||::|"
- },
- {
- "number": 19,
- "name": "Approach",
- "chineseName": "臨",
- "pinyin": "Lín",
- "judgement": "Leaders draw near to listen sincerely.",
- "image": "Earth over lake signifies compassion visiting the people.",
- "upperTrigram": "Kun",
- "lowerTrigram": "Dui",
- "keywords": [
- "Empathy",
- "Guidance",
- "Presence"
- ],
- "planetaryInfluence": "Mercury",
- "binary": "000011",
- "lineDiagram": "||::::"
- },
- {
- "number": 20,
- "name": "Contemplation",
- "chineseName": "觀",
- "pinyin": "Guān",
- "judgement": "Observation inspires ethical alignment.",
- "image": "Wind over earth is the elevated view of the sage.",
- "upperTrigram": "Xun",
- "lowerTrigram": "Kun",
- "keywords": [
- "Perspective",
- "Ritual",
- "Vision"
- ],
- "planetaryInfluence": "Venus",
- "binary": "110000",
- "lineDiagram": "::::||"
- },
- {
- "number": 21,
- "name": "Biting Through",
- "chineseName": "噬嗑",
- "pinyin": "Shì Kè",
- "judgement": "Decisive action cuts through obstruction.",
- "image": "Fire over thunder shows justice enforced with clarity.",
- "upperTrigram": "Li",
- "lowerTrigram": "Zhen",
- "keywords": [
- "Decision",
- "Justice",
- "Resolve"
- ],
- "planetaryInfluence": "Mars",
- "binary": "101001",
- "lineDiagram": "|::|:|"
- },
- {
- "number": 22,
- "name": "Grace",
- "chineseName": "賁",
- "pinyin": "Bì",
- "judgement": "Beauty adorns substance when humility remains.",
- "image": "Mountain over fire highlights poise and restraint.",
- "upperTrigram": "Gen",
- "lowerTrigram": "Li",
- "keywords": [
- "Aesthetics",
- "Poise",
- "Form"
- ],
- "planetaryInfluence": "Jupiter",
- "binary": "100101",
- "lineDiagram": "|:|::|"
- },
- {
- "number": 23,
- "name": "Splitting Apart",
- "chineseName": "剝",
- "pinyin": "Bō",
- "judgement": "When decay spreads, strip away excess.",
- "image": "Mountain over earth signals outer shells falling.",
- "upperTrigram": "Gen",
- "lowerTrigram": "Kun",
- "keywords": [
- "Decline",
- "Release",
- "Truth"
- ],
- "planetaryInfluence": "Saturn",
- "binary": "100000",
- "lineDiagram": ":::::|"
- },
- {
- "number": 24,
- "name": "Return",
- "chineseName": "復",
- "pinyin": "Fù",
- "judgement": "Cycles renew when rest follows completion.",
- "image": "Earth over thunder marks the turning of the year.",
- "upperTrigram": "Kun",
- "lowerTrigram": "Zhen",
- "keywords": [
- "Renewal",
- "Rhythm",
- "Faith"
- ],
- "planetaryInfluence": "Earth",
- "binary": "000001",
- "lineDiagram": "|:::::"
- },
- {
- "number": 25,
- "name": "Innocence",
- "chineseName": "無妄",
- "pinyin": "Wú Wàng",
- "judgement": "Sincerity triumphs over scheming.",
- "image": "Heaven over thunder shows spontaneous virtue.",
- "upperTrigram": "Qian",
- "lowerTrigram": "Zhen",
- "keywords": [
- "Authenticity",
- "Spontaneity",
- "Trust"
- ],
- "planetaryInfluence": "Sun",
- "binary": "111001",
- "lineDiagram": "|::|||"
- },
- {
- "number": 26,
- "name": "Great Taming",
- "chineseName": "大畜",
- "pinyin": "Dà Chù",
- "judgement": "Conserve strength until action serves wisdom.",
- "image": "Mountain over heaven portrays restraint harnessing power.",
- "upperTrigram": "Gen",
- "lowerTrigram": "Qian",
- "keywords": [
- "Discipline",
- "Reserve",
- "Mastery"
- ],
- "planetaryInfluence": "Moon",
- "binary": "100111",
- "lineDiagram": "|||::|"
- },
- {
- "number": 27,
- "name": "Nourishment",
- "chineseName": "頤",
- "pinyin": "Yí",
- "judgement": "Words and food alike must be chosen with care.",
- "image": "Mountain over thunder emphasizes mindful sustenance.",
- "upperTrigram": "Gen",
- "lowerTrigram": "Zhen",
- "keywords": [
- "Nutrition",
- "Speech",
- "Mindfulness"
- ],
- "planetaryInfluence": "Mercury",
- "binary": "100001",
- "lineDiagram": "|::::|"
- },
- {
- "number": 28,
- "name": "Great Exceeding",
- "chineseName": "大過",
- "pinyin": "Dà Guò",
- "judgement": "Bearing heavy loads demands flexibility.",
- "image": "Lake over wind shows a beam bending before it breaks.",
- "upperTrigram": "Dui",
- "lowerTrigram": "Xun",
- "keywords": [
- "Weight",
- "Adaptability",
- "Responsibility"
- ],
- "planetaryInfluence": "Venus",
- "binary": "011110",
- "lineDiagram": ":||||:"
- },
- {
- "number": 29,
- "name": "The Abyss",
- "chineseName": "坎",
- "pinyin": "Kǎn",
- "judgement": "Repeated trials teach sincere caution.",
- "image": "Water over water is the perilous gorge.",
- "upperTrigram": "Kan",
- "lowerTrigram": "Kan",
- "keywords": [
- "Trial",
- "Honesty",
- "Depth"
- ],
- "planetaryInfluence": "Mars",
- "binary": "010010",
- "lineDiagram": ":|::|:"
- },
- {
- "number": 30,
- "name": "Radiance",
- "chineseName": "離",
- "pinyin": "Lí",
- "judgement": "Clarity is maintained by tending the flame.",
- "image": "Fire over fire represents brilliance sustained through care.",
- "upperTrigram": "Li",
- "lowerTrigram": "Li",
- "keywords": [
- "Illumination",
- "Culture",
- "Attention"
- ],
- "planetaryInfluence": "Jupiter",
- "binary": "101101",
- "lineDiagram": "|:||:|"
- },
- {
- "number": 31,
- "name": "Influence",
- "chineseName": "咸",
- "pinyin": "Xián",
- "judgement": "Sincere attraction arises from mutual respect.",
- "image": "Lake over mountain highlights responsive hearts.",
- "upperTrigram": "Dui",
- "lowerTrigram": "Gen",
- "keywords": [
- "Attraction",
- "Mutuality",
- "Sensitivity"
- ],
- "planetaryInfluence": "Saturn",
- "binary": "011100",
- "lineDiagram": "::|||:"
- },
- {
- "number": 32,
- "name": "Duration",
- "chineseName": "恒",
- "pinyin": "Héng",
- "judgement": "Commitment endures when balanced.",
- "image": "Thunder over wind speaks of constancy amid change.",
- "upperTrigram": "Zhen",
- "lowerTrigram": "Xun",
- "keywords": [
- "Commitment",
- "Consistency",
- "Rhythm"
- ],
- "planetaryInfluence": "Earth",
- "binary": "001110",
- "lineDiagram": ":|||::"
- },
- {
- "number": 33,
- "name": "Retreat",
- "chineseName": "遯",
- "pinyin": "Dùn",
- "judgement": "Strategic withdrawal preserves integrity.",
- "image": "Heaven over mountain shows noble retreat.",
- "upperTrigram": "Qian",
- "lowerTrigram": "Gen",
- "keywords": [
- "Withdrawal",
- "Strategy",
- "Self-care"
- ],
- "planetaryInfluence": "Sun",
- "binary": "111100",
- "lineDiagram": "::||||"
- },
- {
- "number": 34,
- "name": "Great Power",
- "chineseName": "大壯",
- "pinyin": "Dà Zhuàng",
- "judgement": "Strength must remain aligned with virtue.",
- "image": "Thunder over heaven affirms action matched with purpose.",
- "upperTrigram": "Zhen",
- "lowerTrigram": "Qian",
- "keywords": [
- "Power",
- "Ethics",
- "Momentum"
- ],
- "planetaryInfluence": "Moon",
- "binary": "001111",
- "lineDiagram": "||||::"
- },
- {
- "number": 35,
- "name": "Progress",
- "chineseName": "晉",
- "pinyin": "Jìn",
- "judgement": "Advancement arrives through clarity and loyalty.",
- "image": "Fire over earth depicts dawn spreading across the plain.",
- "upperTrigram": "Li",
- "lowerTrigram": "Kun",
- "keywords": [
- "Advancement",
- "Visibility",
- "Service"
- ],
- "planetaryInfluence": "Mercury",
- "binary": "101000",
- "lineDiagram": ":::|:|"
- },
- {
- "number": 36,
- "name": "Darkening Light",
- "chineseName": "明夷",
- "pinyin": "Míng Yí",
- "judgement": "Protect the inner light when circumstances grow harsh.",
- "image": "Earth over fire shows brilliance concealed for safety.",
- "upperTrigram": "Kun",
- "lowerTrigram": "Li",
- "keywords": [
- "Protection",
- "Subtlety",
- "Endurance"
- ],
- "planetaryInfluence": "Venus",
- "binary": "000101",
- "lineDiagram": "|:|:::"
- },
- {
- "number": 37,
- "name": "Family",
- "chineseName": "家人",
- "pinyin": "Jiā Rén",
- "judgement": "Clear roles nourish household harmony.",
- "image": "Wind over fire indicates rituals ordering the home.",
- "upperTrigram": "Xun",
- "lowerTrigram": "Li",
- "keywords": [
- "Home",
- "Roles",
- "Care"
- ],
- "planetaryInfluence": "Mars",
- "binary": "110101",
- "lineDiagram": "|:|:||"
- },
- {
- "number": 38,
- "name": "Opposition",
- "chineseName": "睽",
- "pinyin": "Kuí",
- "judgement": "Recognize difference without hostility.",
- "image": "Fire over lake reflects contrast seeking balance.",
- "upperTrigram": "Li",
- "lowerTrigram": "Dui",
- "keywords": [
- "Contrast",
- "Perspective",
- "Tolerance"
- ],
- "planetaryInfluence": "Jupiter",
- "binary": "101011",
- "lineDiagram": "||:|:|"
- },
- {
- "number": 39,
- "name": "Obstruction",
- "chineseName": "蹇",
- "pinyin": "Jiǎn",
- "judgement": "Turn hindrance into training.",
- "image": "Water over mountain shows difficult ascent.",
- "upperTrigram": "Kan",
- "lowerTrigram": "Gen",
- "keywords": [
- "Obstacle",
- "Effort",
- "Learning"
- ],
- "planetaryInfluence": "Saturn",
- "binary": "010100",
- "lineDiagram": "::|:|:"
- },
- {
- "number": 40,
- "name": "Deliverance",
- "chineseName": "解",
- "pinyin": "Xiè",
- "judgement": "Relief comes when knots are untied.",
- "image": "Thunder over water portrays release after storm.",
- "upperTrigram": "Zhen",
- "lowerTrigram": "Kan",
- "keywords": [
- "Release",
- "Solution",
- "Breath"
- ],
- "planetaryInfluence": "Earth",
- "binary": "001010",
- "lineDiagram": ":|:|::"
- },
- {
- "number": 41,
- "name": "Decrease",
- "chineseName": "損",
- "pinyin": "Sǔn",
- "judgement": "Voluntary simplicity restores balance.",
- "image": "Mountain over lake shows graceful sharing of resources.",
- "upperTrigram": "Gen",
- "lowerTrigram": "Dui",
- "keywords": [
- "Simplicity",
- "Offering",
- "Balance"
- ],
- "planetaryInfluence": "Sun",
- "binary": "100011",
- "lineDiagram": "||:::|"
- },
- {
- "number": 42,
- "name": "Increase",
- "chineseName": "益",
- "pinyin": "Yì",
- "judgement": "Blessings multiply when shared.",
- "image": "Wind over thunder reveals generous expansion.",
- "upperTrigram": "Xun",
- "lowerTrigram": "Zhen",
- "keywords": [
- "Growth",
- "Generosity",
- "Opportunity"
- ],
- "planetaryInfluence": "Moon",
- "binary": "110001",
- "lineDiagram": "|:::||"
- },
- {
- "number": 43,
- "name": "Breakthrough",
- "chineseName": "夬",
- "pinyin": "Guài",
- "judgement": "Speak truth boldly to clear corruption.",
- "image": "Lake over heaven highlights decisive proclamation.",
- "upperTrigram": "Dui",
- "lowerTrigram": "Qian",
- "keywords": [
- "Resolution",
- "Declaration",
- "Courage"
- ],
- "planetaryInfluence": "Mercury",
- "binary": "011111",
- "lineDiagram": "|||||:"
- },
- {
- "number": 44,
- "name": "Encounter",
- "chineseName": "姤",
- "pinyin": "Gòu",
- "judgement": "Unexpected influence requires discernment.",
- "image": "Heaven over wind shows potent visitors arriving.",
- "upperTrigram": "Qian",
- "lowerTrigram": "Xun",
- "keywords": [
- "Encounter",
- "Discernment",
- "Temptation"
- ],
- "planetaryInfluence": "Venus",
- "binary": "111110",
- "lineDiagram": ":|||||"
- },
- {
- "number": 45,
- "name": "Gathering",
- "chineseName": "萃",
- "pinyin": "Cuì",
- "judgement": "Unity grows when motive is sincere.",
- "image": "Lake over earth signifies assembly around shared cause.",
- "upperTrigram": "Dui",
- "lowerTrigram": "Kun",
- "keywords": [
- "Assembly",
- "Devotion",
- "Focus"
- ],
- "planetaryInfluence": "Mars",
- "binary": "011000",
- "lineDiagram": ":::||:"
- },
- {
- "number": 46,
- "name": "Ascending",
- "chineseName": "升",
- "pinyin": "Shēng",
- "judgement": "Slow steady progress pierces obstacles.",
- "image": "Earth over wind shows roots pushing upward.",
- "upperTrigram": "Kun",
- "lowerTrigram": "Xun",
- "keywords": [
- "Growth",
- "Perseverance",
- "Aspiration"
- ],
- "planetaryInfluence": "Jupiter",
- "binary": "000110",
- "lineDiagram": ":||:::"
- },
- {
- "number": 47,
- "name": "Oppression",
- "chineseName": "困",
- "pinyin": "Kùn",
- "judgement": "Constraints refine inner resolve.",
- "image": "Lake over water indicates fatigue relieved only by integrity.",
- "upperTrigram": "Dui",
- "lowerTrigram": "Kan",
- "keywords": [
- "Constraint",
- "Endurance",
- "Faith"
- ],
- "planetaryInfluence": "Saturn",
- "binary": "011010",
- "lineDiagram": ":|:||:"
- },
- {
- "number": 48,
- "name": "The Well",
- "chineseName": "井",
- "pinyin": "Jǐng",
- "judgement": "Communal resources must be maintained.",
- "image": "Water over wind depicts a well drawing fresh insight.",
- "upperTrigram": "Kan",
- "lowerTrigram": "Xun",
- "keywords": [
- "Resource",
- "Maintenance",
- "Depth"
- ],
- "planetaryInfluence": "Earth",
- "binary": "010110",
- "lineDiagram": ":||:|:"
- },
- {
- "number": 49,
- "name": "Revolution",
- "chineseName": "革",
- "pinyin": "Gé",
- "judgement": "Change succeeds when timing and virtue align.",
- "image": "Lake over fire indicates shedding the old skin.",
- "upperTrigram": "Dui",
- "lowerTrigram": "Li",
- "keywords": [
- "Change",
- "Timing",
- "Renewal"
- ],
- "planetaryInfluence": "Sun",
- "binary": "011101",
- "lineDiagram": "|:|||:"
- },
- {
- "number": 50,
- "name": "The Vessel",
- "chineseName": "鼎",
- "pinyin": "Dǐng",
- "judgement": "Elevated service transforms the culture.",
- "image": "Fire over wind depicts the cauldron that refines offerings.",
- "upperTrigram": "Li",
- "lowerTrigram": "Xun",
- "keywords": [
- "Service",
- "Transformation",
- "Heritage"
- ],
- "planetaryInfluence": "Moon",
- "binary": "101110",
- "lineDiagram": ":|||:|"
- },
- {
- "number": 51,
- "name": "Arousing Thunder",
- "chineseName": "震",
- "pinyin": "Zhèn",
- "judgement": "Shock awakens the heart to reverence.",
- "image": "Thunder over thunder doubles the drumbeat of alertness.",
- "upperTrigram": "Zhen",
- "lowerTrigram": "Zhen",
- "keywords": [
- "Shock",
- "Awakening",
- "Movement"
- ],
- "planetaryInfluence": "Mercury",
- "binary": "001001",
- "lineDiagram": "|::|::"
- },
- {
- "number": 52,
- "name": "Still Mountain",
- "chineseName": "艮",
- "pinyin": "Gèn",
- "judgement": "Cultivate stillness to master desire.",
- "image": "Mountain over mountain shows unmoving focus.",
- "upperTrigram": "Gen",
- "lowerTrigram": "Gen",
- "keywords": [
- "Stillness",
- "Meditation",
- "Boundaries"
- ],
- "planetaryInfluence": "Venus",
- "binary": "100100",
- "lineDiagram": "::|::|"
- },
- {
- "number": 53,
- "name": "Gradual Development",
- "chineseName": "漸",
- "pinyin": "Jiàn",
- "judgement": "Lasting progress resembles a tree growing rings.",
- "image": "Wind over mountain displays slow maturation.",
- "upperTrigram": "Xun",
- "lowerTrigram": "Gen",
- "keywords": [
- "Patience",
- "Evolution",
- "Commitment"
- ],
- "planetaryInfluence": "Mars",
- "binary": "110100",
- "lineDiagram": "::|:||"
- },
- {
- "number": 54,
- "name": "Marrying Maiden",
- "chineseName": "歸妹",
- "pinyin": "Guī Mèi",
- "judgement": "Adjust expectations when circumstances limit rank.",
- "image": "Thunder over lake spotlights unequal partnerships.",
- "upperTrigram": "Zhen",
- "lowerTrigram": "Dui",
- "keywords": [
- "Transition",
- "Adaptation",
- "Protocol"
- ],
- "planetaryInfluence": "Jupiter",
- "binary": "001011",
- "lineDiagram": "||:|::"
- },
- {
- "number": 55,
- "name": "Abundance",
- "chineseName": "豐",
- "pinyin": "Fēng",
- "judgement": "Radiant success must be handled with balance.",
- "image": "Thunder over fire illuminates the hall at noon.",
- "upperTrigram": "Zhen",
- "lowerTrigram": "Li",
- "keywords": [
- "Splendor",
- "Responsibility",
- "Timing"
- ],
- "planetaryInfluence": "Saturn",
- "binary": "001101",
- "lineDiagram": "|:||::"
- },
- {
- "number": 56,
- "name": "The Wanderer",
- "chineseName": "旅",
- "pinyin": "Lǚ",
- "judgement": "Travel lightly and guard reputation.",
- "image": "Fire over mountain marks a traveler tending the campfire.",
- "upperTrigram": "Li",
- "lowerTrigram": "Gen",
- "keywords": [
- "Travel",
- "Restraint",
- "Awareness"
- ],
- "planetaryInfluence": "Earth",
- "binary": "101100",
- "lineDiagram": "::||:|"
- },
- {
- "number": 57,
- "name": "Gentle Wind",
- "chineseName": "巽",
- "pinyin": "Xùn",
- "judgement": "Persistent influence accomplishes what force cannot.",
- "image": "Wind over wind indicates subtle penetration.",
- "upperTrigram": "Xun",
- "lowerTrigram": "Xun",
- "keywords": [
- "Penetration",
- "Diplomacy",
- "Subtlety"
- ],
- "planetaryInfluence": "Sun",
- "binary": "110110",
- "lineDiagram": ":||:||"
- },
- {
- "number": 58,
- "name": "Joyous Lake",
- "chineseName": "兌",
- "pinyin": "Duì",
- "judgement": "Openhearted dialogue dissolves resentment.",
- "image": "Lake over lake celebrates shared delight.",
- "upperTrigram": "Dui",
- "lowerTrigram": "Dui",
- "keywords": [
- "Joy",
- "Conversation",
- "Trust"
- ],
- "planetaryInfluence": "Moon",
- "binary": "011011",
- "lineDiagram": "||:||:"
- },
- {
- "number": 59,
- "name": "Dispersion",
- "chineseName": "渙",
- "pinyin": "Huàn",
- "judgement": "Loosen rigid structures so spirit can move.",
- "image": "Wind over water shows breath dispersing fear.",
- "upperTrigram": "Xun",
- "lowerTrigram": "Kan",
- "keywords": [
- "Dissolve",
- "Freedom",
- "Relief"
- ],
- "planetaryInfluence": "Mercury",
- "binary": "110010",
- "lineDiagram": ":|::||"
- },
- {
- "number": 60,
- "name": "Limitation",
- "chineseName": "節",
- "pinyin": "Jié",
- "judgement": "Clear boundaries enable real freedom.",
- "image": "Water over lake portrays calibrated vessels.",
- "upperTrigram": "Kan",
- "lowerTrigram": "Dui",
- "keywords": [
- "Boundaries",
- "Measure",
- "Discipline"
- ],
- "planetaryInfluence": "Venus",
- "binary": "010011",
- "lineDiagram": "||::|:"
- },
- {
- "number": 61,
- "name": "Inner Truth",
- "chineseName": "中孚",
- "pinyin": "Zhōng Fú",
- "judgement": "Trustworthiness unites disparate groups.",
- "image": "Wind over lake depicts resonance within the heart.",
- "upperTrigram": "Xun",
- "lowerTrigram": "Dui",
- "keywords": [
- "Sincerity",
- "Empathy",
- "Alignment"
- ],
- "planetaryInfluence": "Mars",
- "binary": "110011",
- "lineDiagram": "||::||"
- },
- {
- "number": 62,
- "name": "Small Exceeding",
- "chineseName": "小過",
- "pinyin": "Xiǎo Guò",
- "judgement": "Attend to details when stakes are delicate.",
- "image": "Thunder over mountain reveals careful movement.",
- "upperTrigram": "Zhen",
- "lowerTrigram": "Gen",
- "keywords": [
- "Detail",
- "Caution",
- "Adjustment"
- ],
- "planetaryInfluence": "Jupiter",
- "binary": "001100",
- "lineDiagram": "::||::"
- },
- {
- "number": 63,
- "name": "After Completion",
- "chineseName": "既濟",
- "pinyin": "Jì Jì",
- "judgement": "Success endures only if vigilance continues.",
- "image": "Water over fire displays balance maintained through work.",
- "upperTrigram": "Kan",
- "lowerTrigram": "Li",
- "keywords": [
- "Completion",
- "Maintenance",
- "Balance"
- ],
- "planetaryInfluence": "Saturn",
- "binary": "010101",
- "lineDiagram": "|:|:|:"
- },
- {
- "number": 64,
- "name": "Before Completion",
- "chineseName": "未濟",
- "pinyin": "Wèi Jì",
- "judgement": "Stay attentive as outcomes crystallize.",
- "image": "Fire over water illustrates the final push before harmony.",
- "upperTrigram": "Li",
- "lowerTrigram": "Kan",
- "keywords": [
- "Transition",
- "Focus",
- "Preparation"
- ],
- "planetaryInfluence": "Earth",
- "binary": "101010",
- "lineDiagram": ":|:|:|"
- }
- ],
- "correspondences": {
- "meta": {
- "sourceDocument": "i-ching-and-tarot-correspondences-table.docx",
- "extractedOn": "2026-02-24",
- "notes": "Tarot-to-trigram correspondences extracted from DOCX table rows where headers are Tarot | Trigram."
- },
- "tarotToTrigram": [
- {
- "tarot": "Ace of Cups",
- "trigram": "Kan"
- },
- {
- "tarot": "Ace of Pentacles",
- "trigram": "Kun"
- },
- {
- "tarot": "Ace of Swords",
- "trigram": "Qian"
- },
- {
- "tarot": "Ace of Wands",
- "trigram": "Li"
- },
- {
- "tarot": "Eight of Cups",
- "trigram": "Xun"
- },
- {
- "tarot": "Eight of Pentacles",
- "trigram": "Gen"
- },
- {
- "tarot": "Eight of Swords",
- "trigram": "Dui"
- },
- {
- "tarot": "Eight of Wands",
- "trigram": "Zhen"
- },
- {
- "tarot": "Five of Cups",
- "trigram": "Kan"
- },
- {
- "tarot": "Five of Pentacles",
- "trigram": "Kun"
- },
- {
- "tarot": "Five of Swords",
- "trigram": "Qian"
- },
- {
- "tarot": "Five of Wands",
- "trigram": "Li"
- },
- {
- "tarot": "Four of Cups",
- "trigram": "Xun"
- },
- {
- "tarot": "Four of Pentacles",
- "trigram": "Gen"
- },
- {
- "tarot": "Four of Swords",
- "trigram": "Dui"
- },
- {
- "tarot": "Four of Wands",
- "trigram": "Zhen"
- },
- {
- "tarot": "Key 0: The Fool",
- "trigram": "Qian"
- },
- {
- "tarot": "Key 1: The Magician",
- "trigram": "Xuan"
- },
- {
- "tarot": "Key 10: Wheel of Fortune",
- "trigram": "Xun"
- },
- {
- "tarot": "Key 11: Justice / Strength",
- "trigram": "Xuan"
- },
- {
- "tarot": "Key 12: The Hanged Man",
- "trigram": "Kan"
- },
- {
- "tarot": "Key 13: Death",
- "trigram": "XuanWind"
- },
- {
- "tarot": "Key 14: Temperance",
- "trigram": "Xuan"
- },
- {
- "tarot": "Key 15: The Devil",
- "trigram": "Kun"
- },
- {
- "tarot": "Key 16: The Tower",
- "trigram": "Zhen"
- },
- {
- "tarot": "Key 17: The Star",
- "trigram": "Dui"
- },
- {
- "tarot": "Key 18: The Moon",
- "trigram": "Xuan"
- },
- {
- "tarot": "Key 19: The Sun",
- "trigram": "Li"
- },
- {
- "tarot": "Key 2: The High Priestess",
- "trigram": "Kan"
- },
- {
- "tarot": "Key 20: Judgement",
- "trigram": "Zhen"
- },
- {
- "tarot": "Key 21: The World",
- "trigram": "Kun"
- },
- {
- "tarot": "Key 3: The Empress",
- "trigram": "Qian"
- },
- {
- "tarot": "Key 4: The Emperor",
- "trigram": "Li"
- },
- {
- "tarot": "Key 5: The Hierophant",
- "trigram": "Gen"
- },
- {
- "tarot": "Key 6: The Lovers",
- "trigram": "Dui"
- },
- {
- "tarot": "Key 7: The Chariot",
- "trigram": "Xuan"
- },
- {
- "tarot": "Key 8: Strength / Justice",
- "trigram": "Xuan"
- },
- {
- "tarot": "Key 9: The Hermit",
- "trigram": "Gen"
- },
- {
- "tarot": "King of Cups",
- "trigram": "Kan"
- },
- {
- "tarot": "King of Pentacles",
- "trigram": "Kun"
- },
- {
- "tarot": "King of Swords",
- "trigram": "Qian"
- },
- {
- "tarot": "King of Wands",
- "trigram": "Li"
- },
- {
- "tarot": "Knight of Cups",
- "trigram": "Kan"
- },
- {
- "tarot": "Knight of Pentacles",
- "trigram": "Kun"
- },
- {
- "tarot": "Knight of Swords",
- "trigram": "Qian"
- },
- {
- "tarot": "Knight of Wands",
- "trigram": "Li"
- },
- {
- "tarot": "Nine of Cups",
- "trigram": "Kan"
- },
- {
- "tarot": "Nine of Pentacles",
- "trigram": "Kun"
- },
- {
- "tarot": "Nine of Swords",
- "trigram": "Qian"
- },
- {
- "tarot": "Nine of Wands",
- "trigram": "Li"
- },
- {
- "tarot": "Page of Cups",
- "trigram": "Xun"
- },
- {
- "tarot": "Page of Pentacles",
- "trigram": "Gen"
- },
- {
- "tarot": "Page of Swords",
- "trigram": "Dui"
- },
- {
- "tarot": "Page of Wands",
- "trigram": "Zhen"
- },
- {
- "tarot": "Queen of Cups",
- "trigram": "Xun"
- },
- {
- "tarot": "Queen of Pentacles",
- "trigram": "Gen"
- },
- {
- "tarot": "Queen of Swords",
- "trigram": "Dui"
- },
- {
- "tarot": "Queen of Wands",
- "trigram": "Zhen"
- },
- {
- "tarot": "Seven of Cups",
- "trigram": "Kan"
- },
- {
- "tarot": "Seven of Pentacles",
- "trigram": "Kun"
- },
- {
- "tarot": "Seven of Swords",
- "trigram": "Qian"
- },
- {
- "tarot": "Seven of Wands",
- "trigram": "Li"
- },
- {
- "tarot": "Six of Cups",
- "trigram": "Xun"
- },
- {
- "tarot": "Six of Pentacles",
- "trigram": "Gen"
- },
- {
- "tarot": "Six of Swords",
- "trigram": "Dui"
- },
- {
- "tarot": "Six of Wands",
- "trigram": "Zhen"
- },
- {
- "tarot": "Ten of Cups",
- "trigram": "Xun"
- },
- {
- "tarot": "Ten of Pentacles",
- "trigram": "Gen"
- },
- {
- "tarot": "Ten of Swords",
- "trigram": "Dui"
- },
- {
- "tarot": "Ten of Wands",
- "trigram": "Zhen"
- },
- {
- "tarot": "Three of Cups",
- "trigram": "Kan"
- },
- {
- "tarot": "Three of Pentacles",
- "trigram": "Kun"
- },
- {
- "tarot": "Three of Swords",
- "trigram": "Qian"
- },
- {
- "tarot": "Three of Wands",
- "trigram": "Li"
- },
- {
- "tarot": "Two of Cups",
- "trigram": "Xun"
- },
- {
- "tarot": "Two of Pentacles",
- "trigram": "Gen"
- },
- {
- "tarot": "Two of Swords",
- "trigram": "Dui"
- },
- {
- "tarot": "Two of Wands",
- "trigram": "Zhen"
- }
- ]
- }
-}
diff --git a/data/islamic-calendar.json b/data/islamic-calendar.json
deleted file mode 100644
index 60d1d49..0000000
--- a/data/islamic-calendar.json
+++ /dev/null
@@ -1,136 +0,0 @@
-{
- "meta": {
- "version": 1,
- "notes": "Islamic (Hijri) lunar calendar months with traditional associations and major observances. Holiday records are centralized in calendar-holidays.json."
- },
- "calendar": {
- "id": "islamic",
- "label": "Islamic Calendar",
- "type": "lunar",
- "script": "Arabic",
- "description": "The Islamic calendar (Hijri/AH) is a purely lunar calendar of 12 months in a year of 354 or 355 days. It began with the Prophet Muhammad's migration (Hijra) from Mecca to Medina in 622 CE. Four months are considered sacred (Al-Ashhur Al-Hurum): Muharram, Rajab, Dhu al-Qada, and Dhu al-Hijja."
- },
- "months": [
- {
- "id": "muharram",
- "order": 1,
- "name": "Muharram",
- "nativeName": "مُحَرَّم",
- "meaning": "Forbidden / Sacred",
- "days": 30,
- "sacred": true,
- "description": "The first month of the Islamic year and one of the four sacred months in which warfare is prohibited. Islamic New Year (Hijri New Year) begins on the 1st. Ashura falls on the 10th."
- },
- {
- "id": "safar",
- "order": 2,
- "name": "Safar",
- "nativeName": "صَفَر",
- "meaning": "Empty / Yellow",
- "days": 29,
- "sacred": false,
- "description": "Traditionally a month associated with misfortune in pre-Islamic Arab belief; Islam discouraged such superstition. No major holidays."
- },
- {
- "id": "rabi-al-awwal",
- "order": 3,
- "name": "Rabi' al-Awwal",
- "nativeName": "رَبِيع الأَوَّل",
- "meaning": "First Spring",
- "days": 30,
- "sacred": false,
- "description": "The month of the Prophet Muhammad's birth (Mawlid al-Nabi) and his migration to Medina. A month of celebration in many Muslim communities."
- },
- {
- "id": "rabi-al-akhir",
- "order": 4,
- "name": "Rabi' al-Akhir",
- "nativeName": "رَبِيع الآخِر",
- "meaning": "Second Spring / Last Spring",
- "days": 29,
- "sacred": false,
- "description": "Also called Rabi' al-Thani (Second Spring). No major holidays."
- },
- {
- "id": "jumada-al-awwal",
- "order": 5,
- "name": "Jumada al-Awwal",
- "nativeName": "جُمَادَى الأُولَى",
- "meaning": "First of Parched Land",
- "days": 30,
- "sacred": false,
- "description": "The fifth month. No major holidays. The name reflects an ancient season of early drought."
- },
- {
- "id": "jumada-al-akhir",
- "order": 6,
- "name": "Jumada al-Akhir",
- "nativeName": "جُمَادَى الآخِرَة",
- "meaning": "Last of Parched Land",
- "days": 29,
- "sacred": false,
- "description": "Also called Jumada al-Thani. Concludes the first half of the Islamic year."
- },
- {
- "id": "rajab",
- "order": 7,
- "name": "Rajab",
- "nativeName": "رَجَب",
- "meaning": "To Respect",
- "days": 30,
- "sacred": true,
- "description": "One of the four sacred months. Warfare was forbidden. Contains Laylat al-Mi'raj (Night of Ascension)."
- },
- {
- "id": "shaban",
- "order": 8,
- "name": "Sha'ban",
- "nativeName": "شَعْبَان",
- "meaning": "To be Scattered / Dispersed",
- "days": 29,
- "sacred": false,
- "description": "The month between Rajab and Ramadan. A time of spiritual preparation for fasting. Contains the Night of Records (Laylat al-Bara'at)."
- },
- {
- "id": "ramadan",
- "order": 9,
- "name": "Ramadan",
- "nativeName": "رَمَضَان",
- "meaning": "Scorching Heat",
- "days": 30,
- "sacred": false,
- "description": "The holiest month of the Islamic year. Fasting (Sawm) from dawn to sunset is obligatory for adult Muslims — one of the Five Pillars of Islam. The Quran was revealed in this month. Ends with Eid al-Fitr."
- },
- {
- "id": "shawwal",
- "order": 10,
- "name": "Shawwal",
- "nativeName": "شَوَّال",
- "meaning": "Raised / Lifted",
- "days": 29,
- "sacred": false,
- "description": "The month following Ramadan. Begins with Eid al-Fitr. Voluntary six-day fast (Shawwal fast) is recommended."
- },
- {
- "id": "dhu-al-qada",
- "order": 11,
- "name": "Dhu al-Qada",
- "nativeName": "ذُو الْقَعْدَة",
- "meaning": "Possessor of Truce / Sitting",
- "days": 30,
- "sacred": true,
- "description": "One of the four sacred months. Pilgrims begin gathering for Hajj. Warfare was traditionally prohibited."
- },
- {
- "id": "dhu-al-hijja",
- "order": 12,
- "name": "Dhu al-Hijja",
- "nativeName": "ذُو الْحِجَّة",
- "meaning": "Possessor of the Pilgrimage",
- "days": 29,
- "daysVariant": 30,
- "sacred": true,
- "description": "The month of Hajj pilgrimage — the fifth Pillar of Islam. Contains Eid al-Adha, one of the two major Islamic festivals. The first ten days are especially sacred."
- }
- ]
-}
diff --git a/data/kabbalah/angelicOrders.json b/data/kabbalah/angelicOrders.json
deleted file mode 100644
index d931fa0..0000000
--- a/data/kabbalah/angelicOrders.json
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- "chayot-hakodesh": {
- "name": {
- "he": "חיות הקודש",
- "en": "Holy Living Creatures",
- "roman": "Chayot Hakodesh"
- }
- },
- "auphanim": {
- "name": {
- "he": "אופנים",
- "en": "Wheels",
- "roman": "Auphaneem"
- }
- },
- "aralim": {
- "name": {
- "he": "אראלים",
- "en": "Thrones",
- "roman": "Ar'aleem"
- }
- },
- "chashmalim": {
- "name": {
- "he": "חשמלים",
- "en": "Shining Ones",
- "roman": "Chashmaleem"
- }
- },
- "seraphim": {
- "name": {
- "he": "שרפים",
- "en": "Flaming Ones",
- "roman": "Seraphim"
- }
- },
- "malachim": {
- "name": {
- "he": "מלאכים",
- "en": "Messengers",
- "roman": "Malecheem"
- }
- },
- "elohim": {
- "name": {
- "he": "אלוהים",
- "en": "Gods & Goddesses",
- "roman": "Eloheem"
- }
- },
- "bnei-elohim": {
- "name": {
- "he": "בני אלוהים",
- "en": "Children of the Gods",
- "roman": "Bnei Eloheem"
- }
- },
- "kerubim": {
- "name": {
- "he": "כרובים",
- "en": "Strong Ones",
- "roman": "Kerubeem"
- }
- },
- "ishim": {
- "name": {
- "he": "אישים",
- "en": "Souls of Fire",
- "roman": "Isheem"
- }
- },
- "": {
- "name": {
- "he": "",
- "en": "",
- "roman": ""
- }
- }
-}
diff --git a/data/kabbalah/archangels.json b/data/kabbalah/archangels.json
deleted file mode 100644
index 0c596d4..0000000
--- a/data/kabbalah/archangels.json
+++ /dev/null
@@ -1,101 +0,0 @@
-{
- "cassiel": {
- "id": "cassiel",
- "name": {
- "he": "כסיאל",
- "roman": "Kassiel"
- },
- "planetId": "saturn"
- },
- "sachiel": {
- "id": "sachiel",
- "name": {
- "he": "סחיאל",
- "roman": "Sachiel"
- },
- "planetId": "jupiter"
- },
- "zamael": {
- "id": "zamael",
- "name": {
- "he": "זמאל",
- "roman": "Zamael"
- },
- "planetId": "mars"
- },
- "michael": {
- "id": "michael",
- "name": {
- "he": "מיכאל",
- "roman": "Michael"
- },
- "planetId": "sol",
- "sephirahId": "hod"
- },
- "anael": {
- "id": "anael",
- "name": {
- "he": "אנאל",
- "roman": "Anael"
- },
- "planetId": "venus"
- },
- "raphael": {
- "id": "raphael",
- "name": {
- "he": "רפאל",
- "roman": "Raphael"
- },
- "planetId": "mercury",
- "sephirahId": "raphael"
- },
- "gabriel": {
- "id": "gabriel",
- "name": {
- "he": "גבריאל",
- "roman": "Gavriel",
- "en": "Gabriel"
- },
- "planetId": "luna",
- "sephirahId": "yesod"
- },
- "uriel": {
- "id": "uriel",
- "name": {
- "he": "אוריאל",
- "roman": "Uriel"
- }
- },
- "tzaphkiel": {
- "id": "tzaphkiel",
- "name": {
- "he": "צַפְקִיאֵל",
- "roman": "Tzaphkiel"
- },
- "sephirahId": "binah"
- },
- "khamael": {
- "id": "khamael",
- "name": {
- "he": "חמאל",
- "roman": "Khamael"
- },
- "sephirahId": "gevurah"
- },
- "tzadkiel": {
- "id": "tzadkiel",
- "name": {
- "he": "צדקיאל",
- "roman": "Tzadkiel"
- },
- "sephirahId": "chesed"
- },
- "haniel": {
- "id": "haniel",
- "name": {
- "he": "הניאל",
- "roman": "Haniel"
- }
- },
- "sephirahId": "netzach"
-}
diff --git a/data/kabbalah/cube.json b/data/kabbalah/cube.json
deleted file mode 100644
index 8552acb..0000000
--- a/data/kabbalah/cube.json
+++ /dev/null
@@ -1,230 +0,0 @@
-{
- "meta": {
- "description": "Cube of Space wall and edge correspondences adapted from the cube Python module.",
- "sources": [
- "cube/attributes.py",
- "Hermetic Qabalah"
- ],
- "notes": "The twelve simple letters map to the 12 edges of the Cube of Space. Walls retain elemental and planetary correspondences."
- },
- "center": {
- "name": "Primal Point",
- "letter": "Tav",
- "hebrewLetterId": "tav",
- "element": "Spirit",
- "keywords": [
- "Unity",
- "Source",
- "All"
- ],
- "description": "Primal point at the center of the Cube of Space - synthesis of all forces",
- "associations": {
- "hebrewLetterId": "tav",
- "kabbalahPathNumber": 32,
- "tarotCard": "The World",
- "tarotTrumpNumber": 21
- }
- },
- "edges": [
- {
- "id": "north-east",
- "name": "North East",
- "walls": ["north", "east"],
- "hebrewLetterId": "he"
- },
- {
- "id": "south-east",
- "name": "South East",
- "walls": ["south", "east"],
- "hebrewLetterId": "vav"
- },
- {
- "id": "east-above",
- "name": "East Above",
- "walls": ["east", "above"],
- "hebrewLetterId": "zayin"
- },
- {
- "id": "east-below",
- "name": "East Below",
- "walls": ["east", "below"],
- "hebrewLetterId": "het"
- },
- {
- "id": "north-above",
- "name": "North Above",
- "walls": ["north", "above"],
- "hebrewLetterId": "tet"
- },
- {
- "id": "north-below",
- "name": "North Below",
- "walls": ["north", "below"],
- "hebrewLetterId": "yod"
- },
- {
- "id": "north-west",
- "name": "North West",
- "walls": ["north", "west"],
- "hebrewLetterId": "lamed"
- },
- {
- "id": "south-west",
- "name": "South West",
- "walls": ["south", "west"],
- "hebrewLetterId": "nun"
- },
- {
- "id": "west-above",
- "name": "West Above",
- "walls": ["west", "above"],
- "hebrewLetterId": "samekh"
- },
- {
- "id": "west-below",
- "name": "West Below",
- "walls": ["west", "below"],
- "hebrewLetterId": "ayin"
- },
- {
- "id": "south-above",
- "name": "South Above",
- "walls": ["south", "above"],
- "hebrewLetterId": "tsadi"
- },
- {
- "id": "south-below",
- "name": "South Below",
- "walls": ["south", "below"],
- "hebrewLetterId": "qof"
- }
- ],
- "walls": [
- {
- "id": "north",
- "name": "North",
- "hebrewLetterId": "pe",
- "side": "north",
- "opposite": "South",
- "oppositeWallId": "south",
- "element": "Air",
- "planet": "Mars",
- "archangel": "Samael",
- "keywords": ["Thought", "Communication", "Intellect"],
- "description": "Northern Wall - Air element, Mars correspondence",
- "associations": {
- "planetId": "mars",
- "godName": "Samael",
- "hebrewLetterId": "pe",
- "kabbalahPathNumber": 27,
- "tarotCard": "The Tower",
- "tarotTrumpNumber": 16
- }
- },
- {
- "id": "south",
- "name": "South",
- "hebrewLetterId": "resh",
- "side": "south",
- "opposite": "North",
- "oppositeWallId": "north",
- "element": "Fire",
- "planet": "Sun",
- "archangel": "Michael",
- "keywords": ["Will", "Action", "Passion"],
- "description": "Southern Wall - Fire element, Sun correspondence",
- "associations": {
- "planetId": "sol",
- "godName": "Michael",
- "hebrewLetterId": "resh",
- "kabbalahPathNumber": 30,
- "tarotCard": "The Sun",
- "tarotTrumpNumber": 19
- }
- },
- {
- "id": "east",
- "name": "East",
- "hebrewLetterId": "dalet",
- "side": "east",
- "opposite": "West",
- "oppositeWallId": "west",
- "element": "Air",
- "planet": "Venus",
- "archangel": "Haniel",
- "keywords": ["Dawn", "Beginning", "Ascent"],
- "description": "Eastern Wall - Air element, new beginnings",
- "associations": {
- "planetId": "venus",
- "godName": "Haniel",
- "hebrewLetterId": "dalet",
- "kabbalahPathNumber": 14,
- "tarotCard": "The Empress",
- "tarotTrumpNumber": 3
- }
- },
- {
- "id": "west",
- "name": "West",
- "hebrewLetterId": "kaf",
- "side": "west",
- "opposite": "East",
- "oppositeWallId": "east",
- "element": "Water",
- "planet": "Jupiter",
- "archangel": "Tzadkiel",
- "keywords": ["Emotion", "Decline", "Closure"],
- "description": "Western Wall - Water element, Jupiter correspondence",
- "associations": {
- "planetId": "jupiter",
- "godName": "Tzadkiel",
- "hebrewLetterId": "kaf",
- "kabbalahPathNumber": 21,
- "tarotCard": "Wheel of Fortune",
- "tarotTrumpNumber": 10
- }
- },
- {
- "id": "above",
- "name": "Above",
- "hebrewLetterId": "bet",
- "side": "above",
- "opposite": "Below",
- "oppositeWallId": "below",
- "element": "Fire",
- "planet": "Mercury",
- "archangel": "Raphael",
- "keywords": ["Heaven", "Spirit", "Light"],
- "description": "Upper Wall - Fire element, Mercury correspondence",
- "associations": {
- "planetId": "mercury",
- "godName": "Raphael",
- "hebrewLetterId": "bet",
- "kabbalahPathNumber": 12,
- "tarotCard": "The Magician",
- "tarotTrumpNumber": 1
- }
- },
- {
- "id": "below",
- "name": "Below",
- "hebrewLetterId": "gimel",
- "side": "below",
- "opposite": "Above",
- "oppositeWallId": "above",
- "element": "Earth",
- "planet": "Luna",
- "archangel": "Gabriel",
- "keywords": ["Matter", "Foundation", "Manifestation"],
- "description": "Lower Wall - Earth element, Luna correspondence",
- "associations": {
- "planetId": "luna",
- "godName": "Gabriel",
- "hebrewLetterId": "gimel",
- "kabbalahPathNumber": 13,
- "tarotCard": "The High Priestess",
- "tarotTrumpNumber": 2
- }
- }
- ]
-}
diff --git a/data/kabbalah/fourWorlds.json b/data/kabbalah/fourWorlds.json
deleted file mode 100644
index 07827b7..0000000
--- a/data/kabbalah/fourWorlds.json
+++ /dev/null
@@ -1,112 +0,0 @@
-{
- "atzilut": {
- "id": "atzilut",
- "name": {
- "en": "Nobility",
- "roman": "Atziluth",
- "he": "אצילות"
- },
- "desc": {
- "en": "Archetypal"
- },
- "residentsTitle": {
- "en": "Pure Deity"
- },
- "tetragrammaton": {
- "slot": "Yod",
- "letterChar": "י",
- "hebrewLetterId": "yod",
- "position": 1
- },
- "worldLayer": {
- "en": "Archetypal World (God's Will)"
- },
- "worldDescription": {
- "en": "World of gods or specific facets or divine qualities."
- },
- "soulId": "chaya"
- },
- "briah": {
- "id": "briah",
- "name": {
- "en": "Creation",
- "roman": "Briah",
- "he": "בריאה"
- },
- "desc": {
- "en": "Creative"
- },
- "residentsTitle": {
- "en": "Archangelic"
- },
- "tetragrammaton": {
- "slot": "Heh",
- "letterChar": "ה",
- "hebrewLetterId": "he",
- "position": 2,
- "isFinal": false
- },
- "worldLayer": {
- "en": "Creative World (God's Love)"
- },
- "worldDescription": {
- "en": "World of archangels, executors of divine qualities."
- },
- "soulId": "neshama"
- },
- "yetzirah": {
- "id": "yetzirah",
- "name": {
- "en": "Formation",
- "roman": "Yetzirah",
- "he": "יצירה"
- },
- "desc": {
- "en": "Formative"
- },
- "residentsTitle": {
- "en": "Angelic"
- },
- "tetragrammaton": {
- "slot": "Vav",
- "letterChar": "ו",
- "hebrewLetterId": "vav",
- "position": 3
- },
- "worldLayer": {
- "en": "Formative World (God's Mind)"
- },
- "worldDescription": {
- "en": "World of angels, who work under the direction of archangels."
- },
- "soulId": "ruach"
- },
- "assiah": {
- "id": "assiah",
- "name": {
- "en": "Doing",
- "roman": "Assiah",
- "he": "עשייה"
- },
- "desc": {
- "en": "Action"
- },
- "residentsTitle": {
- "en": "Man, Matter, Shells, Demons"
- },
- "tetragrammaton": {
- "slot": "Heh",
- "letterChar": "ה",
- "hebrewLetterId": "he",
- "position": 4,
- "isFinal": true
- },
- "worldLayer": {
- "en": "Material World (God's Creation)"
- },
- "worldDescription": {
- "en": "World of spirits, who focus the specialized duties of their ruling angel to infuse matter and energy."
- },
- "soulId": "nephesh"
- }
-}
diff --git a/data/kabbalah/godNames.json b/data/kabbalah/godNames.json
deleted file mode 100644
index 685773b..0000000
--- a/data/kabbalah/godNames.json
+++ /dev/null
@@ -1,72 +0,0 @@
-{
- "ehiyeh": {
- "name": {
- "he": "אהיה",
- "roman": "Ehiyeh",
- "en": "I am"
- }
- },
- "yah": {
- "name": {
- "he": "יה",
- "roman": "Yah",
- "en": "Lord"
- }
- },
- "yhvh-elohim": {
- "name": {
- "he": "יהוה אלוהים",
- "roman": "YHVH Elohim",
- "en": "The Lord God"
- }
- },
- "el": {
- "name": {
- "he": "אל",
- "roman": "El",
- "en": "God"
- }
- },
- "elohim-gibor": {
- "name": {
- "he": "אלוהים גיבור",
- "roman": "Elohim Gibor",
- "en": "God of Power"
- }
- },
- "yhvh-eloha-vedaat": {
- "name": {
- "he": "יהוה אלוה ודעת",
- "roman": "YHVH Eloah Ve-da'at",
- "en": "Lord God of Knowledge"
- }
- },
- "yhvh-tzvaot": {
- "name": {
- "he": "יהוה צבעות",
- "roman": "YHVH Tzva-oht",
- "en": "Lord of Armies"
- }
- },
- "elohim-tzvaot": {
- "name": {
- "he": "אלוהים צבעות",
- "roman": "Elohim Tzvaot",
- "en": "God of Armies"
- }
- },
- "shadai-el-chai": {
- "name": {
- "he": "שדאי אל חי",
- "roman": "Shaddai El Chai",
- "en": "Almighty Living God"
- }
- },
- "adonai-haaretz": {
- "name": {
- "he": "אדוני הארץ",
- "roman": "Adonai Ha'aretz",
- "en": "Lord of Earth"
- }
- }
-}
diff --git a/data/kabbalah/kabbalah-tree.json b/data/kabbalah/kabbalah-tree.json
deleted file mode 100644
index 918e056..0000000
--- a/data/kabbalah/kabbalah-tree.json
+++ /dev/null
@@ -1,500 +0,0 @@
-{
- "meta": {
- "description": "Kabbalah Tree of Life — unified 32-path dataset. Paths 1–10 are the Sephiroth; paths 11–32 are the 22 Hebrew letter paths. Foreign keys reference sephirot.json (sephiraId) and hebrewLetters.json (letterTransliteration). Tarot and astrological correspondences follow the Hermetic / Golden Dawn tradition (Liber 777).",
- "sources": [
- "Sefer Yetzirah",
- "Liber 777 — Aleister Crowley",
- "open_777 paths dataset — adamblvck (github.com/adamblvck/open_777)"
- ],
- "tradition": "Hermetic Qabalah / Golden Dawn",
- "notes": "The 22 letter paths use the Hermetic GD attribution (Tzaddi = Aquarius / The Star, He = Aries / The Emperor)."
- },
- "sephiroth": [
- {
- "number": 1,
- "sephiraId": "keter",
- "name": "Kether",
- "nameHebrew": "כתר",
- "translation": "Crown",
- "planet": "Primum Mobile",
- "intelligence": "The Admirable or Hidden Intelligence",
- "tarot": "The 4 Aces",
- "description": "The first path is called the Great or Hidden Intelligence (Supreme Crown). It is the light that expresses the first principle without a source, and is the primordial glory, that nothing created can attain its essence."
- },
- {
- "number": 2,
- "sephiraId": "chochmah",
- "name": "Chokmah",
- "nameHebrew": "חכמה",
- "translation": "Wisdom",
- "planet": "Zodiac",
- "intelligence": "The Illuminating Intelligence",
- "tarot": "The 4 Twos — Kings / Knights",
- "description": "The second path is the path of the enlightened intellect, the crown of creation, the light of its equal unity, exalted above all like the head, which the Kabbalists call the Second Glory."
- },
- {
- "number": 3,
- "sephiraId": "binah",
- "name": "Binah",
- "nameHebrew": "בינה",
- "translation": "Understanding",
- "planet": "Saturn",
- "intelligence": "The Sanctifying Intelligence",
- "tarot": "The 4 Threes — Queens",
- "description": "The third way is the sanctifying intelligence, the foundation of primordial wisdom, which is called the giver of faith and its root. It is the parent of faith, from which faith comes."
- },
- {
- "number": 4,
- "sephiraId": "hesed",
- "name": "Chesed",
- "nameHebrew": "חסד",
- "translation": "Mercy",
- "planet": "Jupiter",
- "intelligence": "The Measuring, Cohesive, or Receptacular Intelligence",
- "tarot": "The 4 Fours",
- "description": "The fourth path is called Measure, or Cohesion, or Container, so called because it contains all the divine powers, and from it all the spiritual virtues of the highest beings emerge. The virtues are radiated from each other by the primordial radiant force."
- },
- {
- "number": 5,
- "sephiraId": "gevurah",
- "name": "Geburah",
- "nameHebrew": "גבורה",
- "translation": "Strength",
- "planet": "Mars",
- "intelligence": "The Radical Intelligence",
- "tarot": "The 4 Fives",
- "description": "The Fifth Path is called the Radical Intelligence, which itself is the Equal Essence of the Oneness, and considers itself Wisdom, or Binah, or Intelligence, radiating from the primordial depths of Hochmah."
- },
- {
- "number": 6,
- "sephiraId": "tiferet",
- "name": "Tiphareth",
- "nameHebrew": "תפארת",
- "translation": "Beauty",
- "planet": "Sol",
- "intelligence": "The Intelligence of the Mediating Influence",
- "tarot": "The 4 Sixes — Princes",
- "description": "The Sixth Path is called the Intelligence of Mediating Influence, for within it the influx of Emitters increases. For it causes an influx that flows into all the reservoirs of blessing, which become one with them."
- },
- {
- "number": 7,
- "sephiraId": "netzach",
- "name": "Netzach",
- "nameHebrew": "נצח",
- "translation": "Victory",
- "planet": "Venus",
- "intelligence": "The Occult or Hidden Intelligence",
- "tarot": "The 4 Sevens",
- "description": "The Seventh Path is the Hidden Intelligence, which is the radiance of all the intellectual virtues recognized by the eyes of the intellect and the contemplation of faith."
- },
- {
- "number": 8,
- "sephiraId": "hod",
- "name": "Hod",
- "nameHebrew": "הוד",
- "translation": "Splendour",
- "planet": "Mercury",
- "intelligence": "The Absolute or Perfect Intelligence",
- "tarot": "The 4 Eights",
- "description": "The Eighth Path is called the Absolute Path, or the Perfect Path, because it is the means of the First. The first has no root to cling to or depend on but the Gedulah from its own nature, the hidden places of its majesty."
- },
- {
- "number": 9,
- "sephiraId": "yesod",
- "name": "Yesod",
- "nameHebrew": "יסוד",
- "translation": "Foundation",
- "planet": "Luna",
- "intelligence": "The Pure or Clear Intelligence",
- "tarot": "The 4 Nines",
- "description": "The Ninth Path is pure intelligence, so called because it purifies the counting laws, substantiates and corrects the conception of their explanations, and apportions their unity. They are united to that unity without diminution or division."
- },
- {
- "number": 10,
- "sephiraId": "malchut",
- "name": "Malkuth",
- "nameHebrew": "מלכות",
- "translation": "Kingdom",
- "planet": "Earth / Sphere of Elements",
- "intelligence": "The Resplendent Intelligence",
- "tarot": "The 4 Tens — Princesses",
- "description": "The tenth path is the brilliant intelligence, for it is exalted above all heads and sits on the throne of Binah (the intelligence spoken of in the third path). It illuminates the radiance of all light, and causes the supply of influence to radiate from the King of Faces."
- }
- ],
- "paths": [
- {
- "pathNumber": 11,
- "connectKey": "1_2",
- "connects": { "from": 1, "to": 2 },
- "connectIds": { "from": "keter", "to": "chochmah" },
- "pillar": "horizontal-supernal",
- "hebrewLetter": {
- "char": "א",
- "transliteration": "Aleph",
- "letterType": "mother",
- "meaning": "Ox"
- },
- "astrology": { "type": "element", "name": "Air" },
- "tarot": { "card": "The Fool", "trumpNumber": 0, "tarotId": "0" },
- "intelligence": "Scintillating Intelligence",
- "description": "The Eleventh Path is the sparkling intelligence, for it is the nature of the veil placed close to the order of arrangement, and it is the special dignity given to it that it may stand before the face of the cause of causes.\n\nThis path is the essence of the 'veil' (ordained by this system). Path number 11 represents the relationship between paths, and it is here that we stand in the face of the 'Cause of Causes'."
- },
- {
- "pathNumber": 12,
- "connectKey": "1_3",
- "connects": { "from": 1, "to": 3 },
- "connectIds": { "from": "keter", "to": "binah" },
- "pillar": "left-supernal",
- "hebrewLetter": {
- "char": "ב",
- "transliteration": "Beth",
- "letterType": "double",
- "meaning": "House"
- },
- "astrology": { "type": "planet", "name": "Mercury" },
- "tarot": { "card": "The Magician", "trumpNumber": 1, "tarotId": "1" },
- "intelligence": "Intelligence of Transparency",
- "description": "The Twelfth Path is the intellect of invisibility, for it is a kind of magnificence called Chazchazit. Khazkhajit is called the place from which visions of those who see in visions (i.e. prophecies received by prophets in visions) come from.\n\nThis path is the essence of the 'Ophan-wheel' of 'Greatness'. This is called 'the one who realizes in front of his eyes (Visualizer)', and 'Those who can see (Seers)' see what is realized here as 'vision'."
- },
- {
- "pathNumber": 13,
- "connectKey": "1_6",
- "connects": { "from": 1, "to": 6 },
- "connectIds": { "from": "keter", "to": "tiferet" },
- "pillar": "middle",
- "hebrewLetter": {
- "char": "ג",
- "transliteration": "Gimel",
- "letterType": "double",
- "meaning": "Camel"
- },
- "astrology": { "type": "planet", "name": "Luna" },
- "tarot": { "card": "The High Priestess", "trumpNumber": 2, "tarotId": "2" },
- "intelligence": "Uniting Intelligence",
- "description": "The thirteenth path is the unifying intelligence, so called because it is itself the essence of glory. It is the perfection of the truth of individual spiritual beings.\n\nThis path is the essence of 'Glory'. It represents the achievement of true essence by united spirit beings.\n\nThe Thirteenth Path, as Gimel, has been called 'the dark night of the soul'. This thirteenth path crosses the abyss leading directly to Kether. The letter Gimel means 'camel' — a medium that crosses the seemingly infinite abyss desert alone. Gimel is the ultimate source of water and expresses the primordial essence of consciousness.\n\nTogether with Temperance (Samekh) and the Universe (Tav), these paths constitute the middle pillar in the tree of life. Walking the thirteenth path unites the human incarnation with the eternal self, and when safely crossing the abyss, the greatest initiation is bestowed. This path connects Tiphareth (the divine incarnation) with Kether, the highest source."
- },
- {
- "pathNumber": 14,
- "connectKey": "2_3",
- "connects": { "from": 2, "to": 3 },
- "connectIds": { "from": "chochmah", "to": "binah" },
- "pillar": "horizontal-supernal",
- "hebrewLetter": {
- "char": "ד",
- "transliteration": "Daleth",
- "letterType": "double",
- "meaning": "Door"
- },
- "astrology": { "type": "planet", "name": "Venus" },
- "tarot": { "card": "The Empress", "trumpNumber": 3, "tarotId": "3" },
- "intelligence": "Illuminating Intelligence",
- "description": "The fourteenth path is the enlightening intelligence, so called because it is itself that Chashmal. Kashmal is the founder of the hidden fundamental concept of holiness and its preparatory stages.\n\nThis path is the essence of 'Speaking of Silence'. On this path one obtains esoteric teachings about the sacred secrets and their structures."
- },
- {
- "pathNumber": 15,
- "connectKey": "2_6",
- "connects": { "from": 2, "to": 6 },
- "connectIds": { "from": "chochmah", "to": "tiferet" },
- "pillar": "right",
- "hebrewLetter": {
- "char": "ה",
- "transliteration": "Heh",
- "letterType": "simple",
- "meaning": "Window"
- },
- "astrology": { "type": "zodiac", "name": "Aries" },
- "tarot": { "card": "The Emperor", "trumpNumber": 4, "tarotId": "4" },
- "intelligence": "Constituting Intelligence",
- "description": "The fifteenth path is the constructive intelligence, so called because it constitutes the reality of creation in pure darkness. People have spoken of these meditations as 'the darkness that the Bible speaks of as the thick darkness that is the belt around it' (Job 38:9).\n\nThis path is a state of consolidation of the essence of creation in the 'Glooms of Purity'."
- },
- {
- "pathNumber": 16,
- "connectKey": "2_4",
- "connects": { "from": 2, "to": 4 },
- "connectIds": { "from": "chochmah", "to": "hesed" },
- "pillar": "right",
- "hebrewLetter": {
- "char": "ו",
- "transliteration": "Vav",
- "letterType": "simple",
- "meaning": "Nail"
- },
- "astrology": { "type": "zodiac", "name": "Taurus" },
- "tarot": { "card": "The Hierophant", "trumpNumber": 5, "tarotId": "5" },
- "intelligence": "Eternal Intelligence",
- "description": "The sixteenth path is the victorious or eternal intelligence, so called because it is the joy of glory. Beyond it there is no other glory like it. It is also called the paradise prepared for the righteous.\n\nThis path is 'the Delight of the Glory'. Therefore, it is the lowest state of 'glory'. This is called the Garden of Eden, and it is a place prepared (as a reward) for the saint."
- },
- {
- "pathNumber": 17,
- "connectKey": "3_6",
- "connects": { "from": 3, "to": 6 },
- "connectIds": { "from": "binah", "to": "tiferet" },
- "pillar": "left",
- "hebrewLetter": {
- "char": "ז",
- "transliteration": "Zayin",
- "letterType": "simple",
- "meaning": "Sword"
- },
- "astrology": { "type": "zodiac", "name": "Gemini" },
- "tarot": { "card": "The Lovers", "trumpNumber": 6, "tarotId": "6" },
- "intelligence": "Disposing Intelligence",
- "description": "The seventeenth path is the disposing intelligence, which gives faith to the righteous, by which they are clothed with the Holy Spirit, and which is called the fountain of virtue in the state of higher beings.\n\nThis path is reserved for faithful saints, and saints are sanctified here. It belongs to the supernal Entities, and it is called 'the foundation of beauty'."
- },
- {
- "pathNumber": 18,
- "connectKey": "3_5",
- "connects": { "from": 3, "to": 5 },
- "connectIds": { "from": "binah", "to": "gevurah" },
- "pillar": "left",
- "hebrewLetter": {
- "char": "ח",
- "transliteration": "Cheth",
- "letterType": "simple",
- "meaning": "Fence"
- },
- "astrology": { "type": "zodiac", "name": "Cancer" },
- "tarot": { "card": "The Chariot", "trumpNumber": 7, "tarotId": "7" },
- "intelligence": "House of Influence",
- "description": "The Eighteenth Path is called the House of Influence (the flow of good things to created beings is increased by the greatness of its abundance), and from the midst of the search are drawn secrets and hidden meanings, which are the cause of all causes. It comes from the cause, dwells in its shadow, and clings to it.\n\nIn exploring this path, those who dwell in the shadow of the 'cause of causes' are handed over hidden mysteries and hints, and vow to thoroughly dig out the material that has flowed in from 'the cause of causes'."
- },
- {
- "pathNumber": 19,
- "connectKey": "4_5",
- "connects": { "from": 4, "to": 5 },
- "connectIds": { "from": "hesed", "to": "gevurah" },
- "pillar": "horizontal-middle",
- "hebrewLetter": {
- "char": "ט",
- "transliteration": "Teth",
- "letterType": "simple",
- "meaning": "Serpent"
- },
- "astrology": { "type": "zodiac", "name": "Leo" },
- "tarot": { "card": "Strength", "trumpNumber": 8, "tarotId": "8" },
- "intelligence": "Intelligence of the Secret of Spiritual Activities",
- "description": "The Nineteenth Path is the intelligence of all the deeds of spiritual beings, so called because of the abundance spread by it from the highest blessings and the most exalted and sublime glory.\n\nThis path points to an influx from the 'Supreme Blessing' and the 'Glory of the Most High'."
- },
- {
- "pathNumber": 20,
- "connectKey": "4_6",
- "connects": { "from": 4, "to": 6 },
- "connectIds": { "from": "hesed", "to": "tiferet" },
- "pillar": "right",
- "hebrewLetter": {
- "char": "י",
- "transliteration": "Yod",
- "letterType": "simple",
- "meaning": "Hand"
- },
- "astrology": { "type": "zodiac", "name": "Virgo" },
- "tarot": { "card": "The Hermit", "trumpNumber": 9, "tarotId": "9" },
- "intelligence": "Intelligence of the Will",
- "description": "The Twentieth Path is the intelligence of the will, so called because it is the means of preparing all and each of created beings. By this intellect the existence of primordial wisdom becomes known.\n\nThis path is the structure of all that is formed. Through this state of consciousness, we can know the nature of 'Original Wisdom'."
- },
- {
- "pathNumber": 21,
- "connectKey": "4_7",
- "connects": { "from": 4, "to": 7 },
- "connectIds": { "from": "hesed", "to": "netzach" },
- "pillar": "right",
- "hebrewLetter": {
- "char": "כ",
- "transliteration": "Kaph",
- "letterType": "double",
- "meaning": "Palm"
- },
- "astrology": { "type": "planet", "name": "Jupiter" },
- "tarot": { "card": "Wheel of Fortune", "trumpNumber": 10, "tarotId": "10" },
- "intelligence": "Intelligence of Conciliation",
- "description": "The Twenty-first Path is the Intelligence of Reconciliation, so called because it receives the influence of God flowing into it from the blessings bestowed on all beings and each being.\n\nThis path is the state of receiving the influx of divinity, through which all beings receive the blessings of the gods.\n\nThe 21st path connects Netzach and Chesed, and directly reflects the power of Jupiter — benevolent king. The alphabetic attribute is the letter Kaph, which in its general form represents a cupped hand for receptivity. The letter Kaph means 'palm' as well as 'closed and clenched hands' and has the numeric value 100. Kaph is layered with mystical meanings closely linked to prophecy and vision.\n\nFundamental to the mysticism of this key is the cyclical nature of life — the regularity of the seasons, the repetitive actions of mankind and astronomical movements in the sky. Kabbalah teaches that the secret to mastering the environment is to be found through enlightenment, and that the center of the wheel is the only resting place."
- },
- {
- "pathNumber": 22,
- "connectKey": "5_6",
- "connects": { "from": 5, "to": 6 },
- "connectIds": { "from": "gevurah", "to": "tiferet" },
- "pillar": "left",
- "hebrewLetter": {
- "char": "ל",
- "transliteration": "Lamed",
- "letterType": "simple",
- "meaning": "Ox Goad"
- },
- "astrology": { "type": "zodiac", "name": "Libra" },
- "tarot": { "card": "Justice", "trumpNumber": 11, "tarotId": "11" },
- "intelligence": "Faithful Intelligence",
- "description": "The Twenty-Second Path is the Faithful Intelligence, so called because by it spiritual virtues are increased and almost all the inhabitants of the earth are under its shadow.\n\nA state of enhanced spiritual power, through which all beings 'dwelling in the shadows' can be approached."
- },
- {
- "pathNumber": 23,
- "connectKey": "5_8",
- "connects": { "from": 5, "to": 8 },
- "connectIds": { "from": "gevurah", "to": "hod" },
- "pillar": "horizontal-middle",
- "hebrewLetter": {
- "char": "מ",
- "transliteration": "Mem",
- "letterType": "mother",
- "meaning": "Water"
- },
- "astrology": { "type": "element", "name": "Water" },
- "tarot": { "card": "The Hanged Man", "trumpNumber": 12, "tarotId": "12" },
- "intelligence": "Stable Intelligence",
- "description": "The Twenty-Third Path is the Stable Intelligence, so called because it possesses the virtue of unity in all ranks.\n\nThis path is the power that sustains all Sephiroth. The 23rd Path runs between Hod and Geburah and is governed by the water element. The Hebrew letter Mem means 'waters' or sea. Water is considered the first principle in alchemy, the most stable and fundamental of the elements.\n\nThe Hanged Man depicts this stable intelligence because he cannot separate it from the Unity that water expresses. The most implicit symbolic system is the symbolic system of reversal or suspension of general consciousness, symbolizing immersion in superconsciousness and the absolute surrender of the individual will. The mythological concept of sacrifice — the dying god — is cosmic and cross-cultural: Odin hung on the world tree, Osiris in Egypt, Dionysus in Greece. The main image of a dying god is that of complete liberation, restoring the Creator back to the throne."
- },
- {
- "pathNumber": 24,
- "connectKey": "6_7",
- "connects": { "from": 6, "to": 7 },
- "connectIds": { "from": "tiferet", "to": "netzach" },
- "pillar": "right",
- "hebrewLetter": {
- "char": "נ",
- "transliteration": "Nun",
- "letterType": "simple",
- "meaning": "Fish"
- },
- "astrology": { "type": "zodiac", "name": "Scorpio" },
- "tarot": { "card": "Death", "trumpNumber": 13, "tarotId": "13" },
- "intelligence": "Imaginative Intelligence",
- "description": "The twenty-fourth path is the intellect of the imagination, so called because it gives its harmonious elegance and likeness to all likenesses created in like ways.\n\nIn this path, all the illusions created appear in a form appropriate to their status."
- },
- {
- "pathNumber": 25,
- "connectKey": "6_9",
- "connects": { "from": 6, "to": 9 },
- "connectIds": { "from": "tiferet", "to": "yesod" },
- "pillar": "middle",
- "hebrewLetter": {
- "char": "ס",
- "transliteration": "Samekh",
- "letterType": "simple",
- "meaning": "Prop"
- },
- "astrology": { "type": "zodiac", "name": "Sagittarius" },
- "tarot": { "card": "Temperance", "trumpNumber": 14, "tarotId": "14" },
- "intelligence": "Intelligence of Temptation and Trial",
- "description": "The twenty-fifth path is the intelligence of testing or trial, so called because it is the first temptation by which the Creator tests all righteous men.\n\nGod causes the called ones to undergo a fundamental test here. Together with the High Priestess (Gimel) and the Universe (Tav), Samekh (Temperance) constitutes the middle pillar in the tree of life. Both Samekh and Gimel have been called 'the dark night of the soul', because both cross an abyss — Samekh crosses the lesser abyss on its journey to Tiphareth."
- },
- {
- "pathNumber": 26,
- "connectKey": "6_8",
- "connects": { "from": 6, "to": 8 },
- "connectIds": { "from": "tiferet", "to": "hod" },
- "pillar": "left",
- "hebrewLetter": {
- "char": "ע",
- "transliteration": "Ayin",
- "letterType": "simple",
- "meaning": "Eye"
- },
- "astrology": { "type": "zodiac", "name": "Capricorn" },
- "tarot": { "card": "The Devil", "trumpNumber": 15, "tarotId": "15" },
- "intelligence": "Renovating Intelligence",
- "description": "The twenty-sixth path is called the Renovating Intelligence, because the Holy God by it renews all the changing things that are renewed by the creation of the world.\n\nThe 26th Path is called the 'Resurrecting Intelligence'. Ayin is said to harbor many mysteries; Gematria equates Ayin to 70 and also the word for 'secret' (SVD). The Ayin, or eye, is the organ of vision — it sees the exterior and appearance of things. In Qabalah, the world of appearances is an illusion arising from our own perception. At Ayin, we learn to use the intelligent eyes of Hod to see anew in the light of beauty illuminated by Tiphareth. Ascension on this path is the process of transferring consciousness from the concrete mind (ego) to the abstract mind (Higher Self)."
- },
- {
- "pathNumber": 27,
- "connectKey": "7_8",
- "connects": { "from": 7, "to": 8 },
- "connectIds": { "from": "netzach", "to": "hod" },
- "pillar": "horizontal-lower",
- "hebrewLetter": {
- "char": "פ",
- "transliteration": "Pe",
- "letterType": "double",
- "meaning": "Mouth"
- },
- "astrology": { "type": "planet", "name": "Mars" },
- "tarot": { "card": "The Tower", "trumpNumber": 16, "tarotId": "16" },
- "intelligence": "Exciting Intelligence",
- "description": "The Twenty-seventh Path is the Exciting Intelligence, so called because by it the intelligence of all created beings and their stimuli or motions under the highest heavens was created.\n\nAll creatures created in the higher dimensions — including their sentience — were created through this path."
- },
- {
- "pathNumber": 28,
- "connectKey": "7_9",
- "connects": { "from": 7, "to": 9 },
- "connectIds": { "from": "netzach", "to": "yesod" },
- "pillar": "right",
- "hebrewLetter": {
- "char": "צ",
- "transliteration": "Tzaddi",
- "letterType": "simple",
- "meaning": "Fish-hook"
- },
- "astrology": { "type": "zodiac", "name": "Aquarius" },
- "tarot": { "card": "The Star", "trumpNumber": 17, "tarotId": "17" },
- "intelligence": "Natural Intelligence",
- "description": "The twenty-eighth path is the natural intelligence, so called because the characteristics of all beings under the solar sphere are perfected and established through it.\n\nThe nature of everything that exists under the sun (belonging to the realm of the sun) is established through this consciousness."
- },
- {
- "pathNumber": 29,
- "connectKey": "7_10",
- "connects": { "from": 7, "to": 10 },
- "connectIds": { "from": "netzach", "to": "malchut" },
- "pillar": "right",
- "hebrewLetter": {
- "char": "ק",
- "transliteration": "Qoph",
- "letterType": "simple",
- "meaning": "Back of Head"
- },
- "astrology": { "type": "zodiac", "name": "Pisces" },
- "tarot": { "card": "The Moon", "trumpNumber": 18, "tarotId": "18" },
- "intelligence": "Corporeal Intelligence",
- "description": "The twenty-ninth path is the bodily intelligence, so called because it gives form to all the worlds and all bodies formed under their multiplication.\n\nThis path describes the development of the materialized according to the systems of each domain.\n\nThe 29th route is another route that threatens the traveler with the risk of disintegration. Since this path leads to Netzach it can cause mental disruption — what is indicated is the renunciation of individuality. The journey from Malkuth to Netzach is a confluence of physical and emotional natures. All paths leading towards Netzach are Orphic paths, similar to Orpheus who enchanted nature with the gift of song.\n\nThe letter Qoph has a value of 100 and also translates as 'awakening'. Called physical intelligence, this is truly the pathway to body consciousness. One of the most important lessons of this path is that it is not to our advantage to try to separate the 'higher state of mind' from the 'lower coarse' form of the body."
- },
- {
- "pathNumber": 30,
- "connectKey": "8_9",
- "connects": { "from": 8, "to": 9 },
- "connectIds": { "from": "hod", "to": "yesod" },
- "pillar": "horizontal-lower",
- "hebrewLetter": {
- "char": "ר",
- "transliteration": "Resh",
- "letterType": "double",
- "meaning": "Head"
- },
- "astrology": { "type": "planet", "name": "Sol" },
- "tarot": { "card": "The Sun", "trumpNumber": 19, "tarotId": "19" },
- "intelligence": "Collecting Intelligence",
- "description": "The Thirtieth Path is the Gathering Intelligence, so called because the astrologers infer from it the judgments of the stars and celestial signs, and the perfection of their learning, according to the laws of their revolutions.\n\nThrough this path, 'the one who spreads the heavens' increases control over the stars and constellations while establishing the knowledge of the chariot wheels in each realm.\n\nThis 30th route runs between Yesod and Hod. This path leads from the realm of the moon to the realm of reason, and although it is gloomy and cold, it is the coolness of the creative imagination by the power of the intellect. However, the full power of the sun shines there. The Hebrew letter Resh means 'head', and its spelling equals 510 or 15 — the same numeric value as Hod (HVD = 15). This path is a balance between mind and body, standing at the heart of the relationship between intellect and intuition. It is often described as a point of profound encounter with the inner master."
- },
- {
- "pathNumber": 31,
- "connectKey": "8_10",
- "connects": { "from": 8, "to": 10 },
- "connectIds": { "from": "hod", "to": "malchut" },
- "pillar": "left",
- "hebrewLetter": {
- "char": "ש",
- "transliteration": "Shin",
- "letterType": "mother",
- "meaning": "Tooth"
- },
- "astrology": { "type": "element", "name": "Fire" },
- "tarot": { "card": "Judgement", "trumpNumber": 20, "tarotId": "20" },
- "intelligence": "Perpetual Intelligence",
- "description": "The Thirty-First Path is the Enduring Intelligence, so why is it called that? For it regulates the motions of the sun and moon in their own order, each in its own proper orbit.\n\nThis path manages the path of the sun and moon so that they maintain their respective optimal orbits according to the laws of nature."
- },
- {
- "pathNumber": 32,
- "connectKey": "9_10",
- "connects": { "from": 9, "to": 10 },
- "connectIds": { "from": "yesod", "to": "malchut" },
- "pillar": "middle",
- "hebrewLetter": {
- "char": "ת",
- "transliteration": "Tav",
- "letterType": "double",
- "meaning": "Cross (Tau)"
- },
- "astrology": { "type": "planet", "name": "Saturn" },
- "tarot": { "card": "The Universe", "trumpNumber": 21, "tarotId": "21" },
- "intelligence": "Administrative Intelligence",
- "description": "The Thirty-Second Path is the Administrative Intelligence, so called because it directs and unites the seven planets in all their operations and even all of them in their proper course.\n\nThis path is given this name because it is the path that governs the passage between the formative world and the material world. The Universe card on this path is called 'The Door to the Inner Plane'."
- }
- ]
-}
diff --git a/data/kabbalah/kerubim.json b/data/kabbalah/kerubim.json
deleted file mode 100644
index 2743a36..0000000
--- a/data/kabbalah/kerubim.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "earth": {
- "id": "earth",
- "title": {
- "en": "Kerub of Earth"
- },
- "face": {
- "en": "Bull",
- "he": "שור",
- "roman": "Shor"
- },
- "zodiacId": "taurus",
- "elementId": "earth"
- },
- "air": {
- "id": "air",
- "title": {
- "en": "Kerub of Air"
- },
- "face": {
- "en": "Man",
- "he": "אדם",
- "roman": "Adam"
- },
- "zodiacId": "aquarius",
- "elementId": "air"
- },
- "water": {
- "id": "water",
- "title": {
- "en": "Kerub of Water"
- },
- "face": {
- "en": "Eagle",
- "he": "נשר",
- "roman": "Nesher"
- },
- "zodiacId": "scorpio",
- "elementId": "water"
- },
- "fire": {
- "id": "fire",
- "title": {
- "en": "Kerub of Fire"
- },
- "face": {
- "en": "Lion",
- "he": "אריה",
- "roman": "Aryeh"
- },
- "zodiacId": "leo",
- "elementId": "fire"
- }
-}
diff --git a/data/kabbalah/paths.json b/data/kabbalah/paths.json
deleted file mode 100644
index 7443a8a..0000000
--- a/data/kabbalah/paths.json
+++ /dev/null
@@ -1,250 +0,0 @@
-{
- "1_2": {
- "id": "1_2",
- "hermetic": {
- "hebrewLetterId": "alef",
- "pathNo": 11,
- "tarotId": "0"
- },
- "hebrew": {
- "hebrewLetterId": "he"
- }
- },
- "1_3": {
- "id": "1_3",
- "hermetic": {
- "hebrewLetterId": "bet",
- "pathNo": 12,
- "tarotId": "1"
- },
- "hebrew": {
- "hebrewLetterId": "vav"
- }
- },
- "1_6": {
- "id": "1_6",
- "hermetic": {
- "hebrewLetterId": "gimel",
- "pathNo": 13,
- "tarotId": "2"
- },
- "hebrew": {
- "hebrewLetterId": "dalet"
- }
- },
- "2_3": {
- "id": "2_3",
- "hermetic": {
- "hebrewLetterId": "dalet",
- "pathNo": 14,
- "tarotId": "3"
- },
- "hebrew": {
- "hebrewLetterId": "shin"
- }
- },
- "2_4": {
- "id": "2_4",
- "hermetic": {
- "hebrewLetterId": "vav",
- "pathNo": 16,
- "tarotId": "5"
- },
- "hebrew": {
- "hebrewLetterId": "bet"
- }
- },
- "2_5": {
- "id": "2_5",
- "hebrew": {
- "hebrewLetterId": "zayin"
- }
- },
- "2_6": {
- "id": "2_6",
- "hermetic": {
- "hebrewLetterId": "he",
- "pathNo": 15,
- "tarotId": "4"
- },
- "hebrew": {
- "hebrewLetterId": "tet"
- }
- },
- "3_4": {
- "id": "3_4",
- "hebrew": {
- "hebrewLetterId": "qof"
- }
- },
- "3_5": {
- "id": "3_5",
- "hermetic": {
- "hebrewLetterId": "het",
- "pathNo": 18,
- "tarotId": "7"
- },
- "hebrew": {
- "hebrewLetterId": "gimel"
- }
- },
- "3_6": {
- "id": "3_6",
- "hermetic": {
- "hebrewLetterId": "zayin",
- "pathNo": 17,
- "tarotId": "6"
- },
- "hebrew": {
- "hebrewLetterId": "ayin"
- }
- },
- "4_5": {
- "id": "4_5",
- "hermetic": {
- "hebrewLetterId": "tet",
- "pathNo": 19,
- "tarotId": "8"
- },
- "hebrew": {
- "hebrewLetterId": "alef"
- }
- },
- "4_6": {
- "id": "4_6",
- "hermetic": {
- "hebrewLetterId": "yod",
- "pathNo": 20,
- "tarotId": "9"
- },
- "hebrew": {
- "hebrewLetterId": "het"
- }
- },
- "4_7": {
- "id": "4_7",
- "hermetic": {
- "hebrewLetterId": "kaf",
- "pathNo": 21,
- "tarotId": "10"
- },
- "hebrew": {
- "hebrewLetterId": "kaf"
- }
- },
- "5_6": {
- "id": "5_6",
- "hermetic": {
- "hebrewLetterId": "lamed",
- "pathNo": 22,
- "tarotId": "11"
- },
- "hebrew": {
- "hebrewLetterId": "tsadi"
- }
- },
- "5_8": {
- "id": "5_8",
- "hermetic": {
- "hebrewLetterId": "mem",
- "pathNo": 23,
- "tarotId": "12"
- },
- "hebrew": {
- "hebrewLetterId": "pe"
- }
- },
- "6_7": {
- "id": "6_7",
- "hermetic": {
- "hebrewLetterId": "nun",
- "pathNo": 24,
- "tarotId": "13"
- },
- "hebrew": {
- "hebrewLetterId": "yod"
- }
- },
- "6_8": {
- "id": "6_8",
- "hermetic": {
- "hebrewLetterId": "ayin",
- "pathNo": 26,
- "tarotId": "15"
- },
- "hebrew": {
- "hebrewLetterId": "samekh"
- }
- },
- "6_9": {
- "id": "6_9",
- "hermetic": {
- "hebrewLetterId": "samekh",
- "pathNo": 25,
- "tarotId": "14"
- },
- "hebrew": {
- "hebrewLetterId": "resh"
- }
- },
- "7_8": {
- "id": "7_8",
- "hermetic": {
- "hebrewLetterId": "pe",
- "pathNo": 27,
- "tarotId": "16"
- },
- "hebrew": {
- "hebrewLetterId": "mem"
- }
- },
- "7_9": {
- "id": "7_9",
- "hermetic": {
- "hebrewLetterId": "tsadi",
- "pathNo": 28,
- "tarotId": "17"
- },
- "hebrew": {
- "hebrewLetterId": "nun"
- }
- },
- "7_10": {
- "id": "7_10",
- "hermetic": {
- "hebrewLetterId": "qof",
- "pathNo": 29,
- "tarotId": "18"
- }
- },
- "8_9": {
- "id": "8_9",
- "hermetic": {
- "hebrewLetterId": "resh",
- "pathNo": 30,
- "tarotId": "19"
- },
- "hebrew": {
- "hebrewLetterId": "lamed"
- }
- },
- "8_10": {
- "id": "8_10",
- "hermetic": {
- "hebrewLetterId": "shin",
- "pathNo": 31,
- "tarotId": "20"
- }
- },
- "9_10": {
- "id": "9_10",
- "hermetic": {
- "hebrewLetterId": "tav",
- "pathNo": 32,
- "tarotId": "21"
- },
- "hebrew": {
- "hebrewLetterId": "tav"
- }
- }
-}
diff --git a/data/kabbalah/sephirot.json b/data/kabbalah/sephirot.json
deleted file mode 100644
index 02044bd..0000000
--- a/data/kabbalah/sephirot.json
+++ /dev/null
@@ -1,324 +0,0 @@
-{
- "keter": {
- "index": 1,
- "id": "keter",
- "name": {
- "he": "כתר",
- "roman": "Keter",
- "en": "Crown"
- },
- "color": {
- "king": "brillliance",
- "kingWeb": "white",
- "queen": "white",
- "queenWeb": "white"
- },
- "chakraId": "crown",
- "godNameId": "ehiyeh",
- "scent": "ambergris",
- "body": "cranium",
- "bodyPos": "above-head",
- "planetId": "primum-mobile",
- "tenHeavens": {
- "en": "1st Swirlings / Primum Mobile",
- "he": "ראשית הגלגולים",
- "roman": "Roshit haGilgulim"
- },
- "stone": "diamond",
- "archangelIdId": "metatron",
- "soulId": "yechidah",
- "angelicOrderId": "chayot-hakodesh",
- "gdGradeId": "10=1",
- "next": "chochmah"
- },
- "chochmah": {
- "index": 2,
- "id": "chochmah",
- "name": {
- "he": "חכמה",
- "en": "Wisdom",
- "roman": "Chochmah"
- },
- "color": {
- "king": "soft-blue",
- "kingWeb": "SkyBlue",
- "queen": "gray",
- "queenWeb": "gray"
- },
- "scent": "musk",
- "chakraId": "third-eye",
- "godNameId": "yah",
- "body": "left-face",
- "bodyPos": "left-temple",
- "planetId": "zodiac",
- "tenHeavens": {
- "en": "The Zodiac",
- "roman": "Mazalot",
- "he": "מזלות"
- },
- "stone": "Star Ruby; Turquoise",
- "archangelId": "raziel",
- "soulId": "chaya",
- "angelicOrderId": "auphanim",
- "gdGradeId": "9=2",
- "prev": "keter",
- "next": "binah"
- },
- "binah": {
- "index": 3,
- "id": "binah",
- "name": {
- "he": "בינה",
- "en": "Understanding",
- "roman": "Binah"
- },
- "color": {
- "king": "deep-red-violet",
- "kingWeb": "#c0448f",
- "queen": "black",
- "queenWeb": "#222",
- "queenWebText": "#ccc"
- },
- "chakraId": "third-eye",
- "godNameId": "yhvh-elohim",
- "scent": "myrrh; civet",
- "body": "right-face",
- "bodyPos": "right-temple",
- "planetId": "saturn",
- "stone": "pearl; star sapphire",
- "archangelId": "tzaphkiel",
- "soulId": "neshama",
- "angelicOrderId": "aralim",
- "gdGradeId": "8=3",
- "prev": "chochmah",
- "next": "hesed"
- },
- "hesed": {
- "index": 4,
- "id": "hesed",
- "name": {
- "he": "חסד",
- "en": "Mercy",
- "roman": "Chesed"
- },
- "color": {
- "king": "deep-violet",
- "kingWeb": "#330066",
- "kingWebText": "#ccc",
- "queen": "blue",
- "queenWeb": "#0066ff"
- },
- "chakraId": "throat",
- "godNameId": "el",
- "scent": "cedar",
- "body": "left-arm",
- "bodyPos": "left-shoulder",
- "planetId": "jupiter",
- "stone": "saphire; amethyst",
- "archangelId": "tzadkiel",
- "soulId": null,
- "angelicOrderId": "chashmalim",
- "gdGradeId": "7=4",
- "prev": "binah",
- "next": "gevurah"
- },
- "gevurah": {
- "index": 5,
- "id": "gevurah",
- "name": {
- "he": "גבורה",
- "en": "Strength",
- "roman": "Gevurah"
- },
- "color": {
- "king": "orange",
- "kingWeb": "orange",
- "queen": "scarlet",
- "queenWeb": "#ff2400"
- },
- "chakraId": "throat",
- "godNameId": "elohim-gibor",
- "scent": "tobacco",
- "body": "right-arm",
- "bodyPos": "right-shoulder",
- "planetId": "mars",
- "stone": "ruby",
- "archangelId": "khamael",
- "soulId": null,
- "angelicOrderId": "seraphim",
- "gdGradeId": "6=5",
- "prev": "hesed",
- "next": "tiferet"
- },
- "tiferet": {
- "index": 6,
- "id": "tiferet",
- "name": {
- "he": "תפארת",
- "en": "Beauty",
- "roman": "Tiferet"
- },
- "color": {
- "king": "rose-pink",
- "kingWeb": "#f7cac1",
- "queen": "gold",
- "queenWeb": "gold"
- },
- "chakraId": "heart",
- "godNameId": "yhvh-eloha-vedaat",
- "scent": "olibanum",
- "body": "breast",
- "bodyPos": "heart",
- "planetId": "sol",
- "stone": "topaz",
- "archangelId": "raphael",
- "soulId": "ruach",
- "angelicOrderId": "malachim",
- "gdGradeId": "5=6",
- "prev": "gevurah",
- "next": "netzach"
- },
- "netzach": {
- "index": 7,
- "id": "netzach",
- "name": {
- "he": "נצח",
- "en": "Victory",
- "roman": "Netzach"
- },
- "color": {
- "king": "yellow-orange",
- "kingWeb": "#ffae42",
- "queen": "emerald",
- "queenWeb": "#50C878"
- },
- "chakraId": "solar-plexus",
- "godNameId": "yhvh-tzvaot",
- "scent": "rose, red sandal",
- "body": "loins; hips",
- "bodyPos": "left-hip",
- "planetId": "venus",
- "stone": "emerald",
- "archangelId": "haniel",
- "soulId": null,
- "angelicOrderId": "elohim",
- "gdGradeId": "4=7",
- "prev": "tiferet",
- "next": "hod"
- },
- "hod": {
- "index": 8,
- "id": "hod",
- "name": {
- "he": "הוד",
- "en": "Splendor",
- "roman": "Hod"
- },
- "color": {
- "king": "violet",
- "kingWeb": "#ee82ee",
- "queen": "orange",
- "queenWeb": "orange"
- },
- "chakraId": "solar-plexus",
- "godNameId": "elohim-tzvaot",
- "scent": "storax",
- "body": "loins; legs",
- "bodyPos": "right-hip",
- "planetId": "mercury",
- "stone": "quartz",
- "archangelId": "michael",
- "soulId": null,
- "angelicOrderId": "bnei-elohim",
- "gdGradeId": "3=8",
- "prev": "netzach",
- "next": "yesod"
- },
- "yesod": {
- "index": 9,
- "id": "yesod",
- "name": {
- "he": "יסוד",
- "en": "Foundation",
- "roman": "Yesod"
- },
- "color": {
- "king": "blue-violet",
- "kingWeb": "#2014d4",
- "kingWebText": "#aaa",
- "queen": "violet",
- "queenWeb": "violet"
- },
- "chakraId": "sacral",
- "godNameId": "shadai-el-chai",
- "scent": "jasmine",
- "body": "genitals",
- "bodyPos": "genitals",
- "planetId": "luna",
- "stone": "quartz",
- "archangelId": "gabriel",
- "soulId": "nephesh",
- "angelicOrderId": "kerubim",
- "gdGradeId": "2=9",
- "prev": "hod",
- "next": "malchut"
- },
- "malchut": {
- "index": 10,
- "id": "malchut",
- "name": {
- "he": "מלכות",
- "en": "Kingdom",
- "roman": "Malchut"
- },
- "color": {
- "king": "yellow",
- "kingWeb": "yellow",
- "queen": "russet,citrine,olive,black",
- "queenWeb": "#80461B,#ba0,#880,#000000",
- "queenWebText": "#eee"
- },
- "chakraId": "root",
- "godNameId": "adonai-haaretz",
- "scent": "",
- "body": "feet",
- "bodyPos": "feet",
- "planetId": "olam-yesodot",
- "tenHeavens": {
- "en": "Sphere of the Elements",
- "he": "עולם יסודות",
- "roman": "Olam Yesodoth"
- },
- "stone": "rock crystal",
- "archangelId": "sandalphon",
- "soulId": "guph",
- "angelicOrderId": "ishim",
- "gdGradeId": "1=10",
- "prev": "yesod"
- },
- "daat": {
- "index": 11,
- "id": "daat",
- "name": {
- "he": "דעת",
- "en": "Knowledge",
- "roman": "Da'at"
- },
- "color": {
- "queen": "lavendar",
- "queenWeb": "#E6E6FAEE",
- "queenWebText": "#000",
- "strokeDasharray": 2,
- "strokeColor": "#000000AA"
- },
- "chakraId": "",
- "godNameId": "yhvh-elohim",
- "scent": "",
- "body": "throat",
- "bodyPos": "throat",
- "stone": "",
- "archangelId": "",
- "soulId": "",
- "angelicOrderId": ""
- }
-}
diff --git a/data/kabbalah/seventyTwoAngels.json b/data/kabbalah/seventyTwoAngels.json
deleted file mode 100644
index bb5f7c8..0000000
--- a/data/kabbalah/seventyTwoAngels.json
+++ /dev/null
@@ -1,107 +0,0 @@
-[
- {
- "name": {
- "he": "והויה",
- "en": "Vehuiah"
- },
- "attribute": {
- "en": "God is High and Exalted above all things."
- },
- "godName": "Jehovah",
- "angelicOrderId": "seraphim",
- "presidesOver": [
- [
- 3,
- 20
- ],
- [
- 4,
- 30
- ],
- [
- 8,
- 11
- ],
- [
- 10,
- 22
- ],
- [
- 1,
- 2
- ]
- ],
- "text": {
- "en": "I'r, genius, Vehuiah והויה. Its attribute is interpreted (God high and “exalted above all things). He does-mine on the Hebrews. The name of God, according to this language, is named Jehovah. He governs the first ray of the East in the spring season, that is to say the five first degrees of, the sphere which begin on March 20 at midnight until the 24th, inclusive, corresponding to the first decade of the sacred calendar, and at the first genius, named Chontaré, under the influence of Mars: this genius, and those which follow, up to the 8th, belong to the first order of angels that the Orthodox call the choir of seraphim. He lives in the region of fire; his sign is the ram, and he presides over the following five days: March 20, April 31, August II, October 22 and January 2; the invocation is made towards the Orient, from precisely midnight until 20 minutes past midnight, to get lights. It is by virtue of these names divine that one becomes illuminated with the spirit of God; we must pronounce them at midnight precisely until midnight 20 mid-nut:s, reciting 16 third verse of the 3rd psalm. (And you Domine susceplor meus et gloria mea 61 exallans caput meum). You must have your talisman prepared according to the principles principles of cabalistic art. (See chapter 8 on this subject.) The person who is born under the influence of this genius has the took subtle; she is gifted with great sagacity, passion- born for the sciences and the arts, capable of undertaking and to perform the most difficult things; she will love the state military, because of the influence of Mars; she will have burst of energy being damaged by fire. The evil genius influences turbulent men; he quickness and anger dominate.\n(1) See the book entitled Tbrezcze, or the only Way of Divine and human sciences, edition of year 7, page 226."
- }
- },
- {
- "name": {
- "he": "יליאל",
- "en": "Jeliel"
- },
- "attribute": {
- "en": "Helpful God"
- },
- "godName": "Aydy",
- "presidesOver": [
- [
- 3,
- 21
- ],
- [
- 6,
- 1
- ],
- [
- 8,
- 12
- ],
- [
- 10,
- 23
- ],
- [
- 1,
- 3
- ]
- ],
- "text": {
- "en": "2° Jeliel יליאל. His attribute (helpful God). 11 do- sure mine Turkey (these people give God the name Aydy). Its radius starts from 16 6* degree up to . 10%, inclusive, corresponding to the influence of genius . named Asican (see the sacred calendar), and at the first first decade. He presides over the following 165 days: March 21, June 1, August 12, October 23, January 3*. \nThis genius is invoked to appease popular seditions. laries, and to obtain victory against those who attack you attack unfairly. The request must be pronounced with the name of the genius, and recite 16 20° verse of Psalm 21. (Tu autem Domine ne eldngaveris auxillum tuum a me ad defenseem meam conspice). The favorable hour includes starts from midnight 20 minutes until midnight 40. \nThis genius dominates over kings and princes; he maintains their subjects in obedience; it influences the generation of all 165 beings that exist in 16 animal kingdoms; he restores peace among spouses and marital fidelity. Those who are born under this influence have a cheerful spirit, ma- pleasant and gallant manners; they will be passionate about it sex.\nThe contrary genius dominates everything that is harmful to animated beings; he likes to separate spouses by pushing them aside . 06 their duties; he inspires a taste for celibacy and the bad ‘good morals."
- }
- },
- {
- "name": {
- "en": "Sitael",
- "he": "סיטאל"
- },
- "attribute": {
- "en": "God, the hope of all creatures."
- },
- "presidesOver": [
- [
- 3,
- 22
- ],
- [
- 6,
- 2
- ],
- [
- 8,
- 13
- ],
- [
- 10,
- 24
- ],
- [
- 1,
- 4
- ]
- ],
- "text": {
- "en": "Sitael סיטאל. His attribute (God, the hope all creatures.) Its radius starts from 16 5 degree of .1 500616 up to 15°., inclusively corres- laying in the second decade and the genius named Chon- stained, under the influence of the sun; he presides over the following days: March 22, June 2, August 13, October 24, January 4. We invoke this genius against 165 adversities; we pronounce the request with the divine names and the 2nd verse of the psalm 90. (Dicet Domino: suceblor meus es tu et refugium meum: Deus meus, sperabo in eum.) The favorable hour starts from midnight 40 minutes until one o'clock. He dominates over nobility, magnanimity and great em- plows; it protects against weapons and ferocious beasts. There no one born under this influence loves the truth; she will keep her word, and she will be happy to oblige those who will need its services. The contrary genius dominates hypocrisy, ingratitude and perjury."
- }
- }
-]
diff --git a/data/kabbalah/souls.json b/data/kabbalah/souls.json
deleted file mode 100644
index a85f6f8..0000000
--- a/data/kabbalah/souls.json
+++ /dev/null
@@ -1,88 +0,0 @@
-{
- "yechidah": {
- "id": "yechidah",
- "name": {
- "en": "unity",
- "he": "יחידה",
- "roman": "yechida"
- },
- "title": {
- "en": "Unity"
- }
- },
- "chaya": {
- "id": "chaya",
- "aliases": [
- "chiah"
- ],
- "name": {
- "en": "life force",
- "he": "חיה",
- "roman": "chiah",
- "altRoman": "chaya"
- },
- "title": {
- "en": "Life Force"
- },
- "desc": {
- "en": "The Chiah is the Life Force itself. It is our true identity, ultimately a pure reflection of the Supreme Consciousness of deity."
- }
- },
- "neshama": {
- "id": "neshama",
- "aliases": [
- "neshamah"
- ],
- "name": {
- "en": "soul-intuition",
- "he": "נשמה",
- "roman": "neshamah",
- "altRoman": "neshama"
- },
- "title": {
- "en": "Soul-Intuition"
- },
- "desc": {
- "en": "The Neshamah is the part of our soul that transcends our thinking processes."
- }
- },
- "ruach": {
- "id": "ruach",
- "name": {
- "en": "intellect",
- "he": "רוח",
- "roman": "ruach"
- },
- "title": {
- "en": "Intellect"
- },
- "desc": {
- "en": "The Ruach is the part of our soul that monopolizes attention to such a degree that we identify with the thinking process."
- }
- },
- "nephesh": {
- "id": "nephesh",
- "name": {
- "en": "animal soul",
- "he": "נפש",
- "roman": "nephesh"
- },
- "title": {
- "en": "Animal Soul"
- },
- "desc": {
- "en": "The Nephesh is primitive consciousness shared with animal, plant, and mineral kingdoms, expressed through instincts, appetite, emotion, sex drive, and survival mechanisms."
- }
- },
- "guph": {
- "id": "guph",
- "name": {
- "en": "body",
- "he": "גוף",
- "roman": "guph"
- },
- "title": {
- "en": "Body"
- }
- }
-}
diff --git a/data/kabbalah/tribesOfIsrael.json b/data/kabbalah/tribesOfIsrael.json
deleted file mode 100644
index 5dac027..0000000
--- a/data/kabbalah/tribesOfIsrael.json
+++ /dev/null
@@ -1,100 +0,0 @@
-{
- "reuben": {
- "id": "reuben",
- "name": {
- "en": "Reuben",
- "he": "ראובן"
- }
- },
- "simeon": {
- "id": "simeon",
- "name": {
- "en": "Simeon",
- "he": "שמעון"
- }
- },
- "levi": {
- "id": "levi",
- "name": {
- "en": "Levi",
- "he": "לוי"
- }
- },
- "judah": {
- "id": "judah",
- "name": {
- "en": "Judah",
- "he": "יהודה"
- }
- },
- "dan": {
- "id": "dan",
- "name": {
- "en": "Dan",
- "he": "דן"
- }
- },
- "naphtali": {
- "id": "naphtali",
- "name": {
- "en": "Naphtali",
- "he": "נפתלי"
- }
- },
- "gad": {
- "id": "gad",
- "name": {
- "en": "Gad",
- "he": "גד"
- }
- },
- "asher": {
- "id": "asher",
- "name": {
- "en": "Asher",
- "he": "אשר"
- }
- },
- "issachar": {
- "id": "issachar",
- "name": {
- "en": "Issachar",
- "he": "יששכר"
- }
- },
- "zebulun": {
- "id": "zebulun",
- "name": {
- "en": "Zebulun",
- "he": "זבולון"
- }
- },
- "joseph": {
- "id": "joseph",
- "name": {
- "en": "Joseph",
- "he": "יוסף"
- }
- },
- "benjamin": {
- "id": "benjamin",
- "name": {
- "en": "Benjamin",
- "he": "בנימין"
- }
- },
- "ephraim": {
- "id": "ephraim",
- "name": {
- "en": "Ephraim",
- "he": "אפרים"
- }
- },
- "manasseh": {
- "id": "manasseh",
- "name": {
- "en": "Menasseh",
- "he": "בנימין"
- }
- }
-}
diff --git a/data/numbers.json b/data/numbers.json
deleted file mode 100644
index 665d40a..0000000
--- a/data/numbers.json
+++ /dev/null
@@ -1,120 +0,0 @@
-{
- "meta": {
- "description": "Digital root number correspondences for values 0 through 9, including arithmetic opposites that sum to 9.",
- "notes": "Use this dataset to attach future number meanings, keywords, tarot links, and kabbalah links without changing UI code.",
- "version": 1
- },
- "entries": [
- {
- "value": 0,
- "label": "Zero",
- "opposite": 9,
- "digitalRoot": 0,
- "summary": "Potential, void, and the unmanifest source before form.",
- "keywords": [],
- "associations": {
- "kabbalahNode": 10,
- "tarotTrumpNumbers": [0]
- }
- },
- {
- "value": 1,
- "label": "One",
- "opposite": 8,
- "digitalRoot": 1,
- "summary": "Initiation, identity, and singular will.",
- "keywords": [],
- "associations": {
- "kabbalahNode": 1
- }
- },
- {
- "value": 2,
- "label": "Two",
- "opposite": 7,
- "digitalRoot": 2,
- "summary": "Polarity, reflection, and relationship.",
- "keywords": [],
- "associations": {
- "kabbalahNode": 2
- }
- },
- {
- "value": 3,
- "label": "Three",
- "opposite": 6,
- "digitalRoot": 3,
- "summary": "Formation, synthesis, and creative expression.",
- "keywords": [],
- "associations": {
- "kabbalahNode": 3
- }
- },
- {
- "value": 4,
- "label": "Four",
- "opposite": 5,
- "digitalRoot": 4,
- "summary": "Order, structure, and stable foundation.",
- "keywords": [],
- "associations": {
- "kabbalahNode": 4
- }
- },
- {
- "value": 5,
- "label": "Five",
- "opposite": 4,
- "digitalRoot": 5,
- "summary": "Motion, adaptation, and dynamic change.",
- "keywords": [],
- "associations": {
- "kabbalahNode": 5
- }
- },
- {
- "value": 6,
- "label": "Six",
- "opposite": 3,
- "digitalRoot": 6,
- "summary": "Balance, harmony, and reciprocal flow.",
- "keywords": [],
- "associations": {
- "kabbalahNode": 6
- }
- },
- {
- "value": 7,
- "label": "Seven",
- "opposite": 2,
- "digitalRoot": 7,
- "summary": "Insight, analysis, and inner seeking.",
- "keywords": [],
- "associations": {
- "kabbalahNode": 7
- }
- },
- {
- "value": 8,
- "label": "Eight",
- "opposite": 1,
- "digitalRoot": 8,
- "summary": "Power, momentum, and cyclical force.",
- "keywords": [],
- "associations": {
- "kabbalahNode": 8
- }
- },
- {
- "value": 9,
- "label": "Nine",
- "opposite": 0,
- "digitalRoot": 9,
- "summary": "Completion, integration, and return.",
- "keywords": [],
- "associations": {
- "kabbalahNode": 9
- }
- }
- ]
-}
diff --git a/data/pentagram.svg b/data/pentagram.svg
deleted file mode 100644
index e7f07b1..0000000
--- a/data/pentagram.svg
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
diff --git a/data/planet-science.json b/data/planet-science.json
deleted file mode 100644
index c60111f..0000000
--- a/data/planet-science.json
+++ /dev/null
@@ -1,269 +0,0 @@
-{
- "meta": {
- "source": "NASA Planetary Fact Sheet (selected values, rounded)",
- "notes": "Core physical/orbital values are approximate and intended for educational UI display."
- },
- "planets": [
- {
- "id": "mercury",
- "name": "Mercury",
- "symbol": "☿︎",
- "classification": "Terrestrial planet",
- "summary": "The smallest planet and closest to the Sun, with extreme day/night temperature swings.",
- "meanDistanceFromSun": {
- "kmMillions": 57.9,
- "au": 0.387
- },
- "orbitalPeriod": {
- "days": 87.969,
- "years": 0.241
- },
- "rotationPeriodHours": 1407.6,
- "radiusKm": 2439.7,
- "diameterKm": 4879.4,
- "massKg": 3.3011e23,
- "gravityMs2": 3.7,
- "escapeVelocityKms": 4.25,
- "axialTiltDeg": 0.03,
- "averageTempC": 167,
- "moons": 0,
- "atmosphere": "Extremely thin exosphere (oxygen, sodium, hydrogen, helium, potassium).",
- "notableFacts": [
- "A solar day lasts about 176 Earth days.",
- "Its surface is heavily cratered like Earth’s Moon."
- ]
- },
- {
- "id": "venus",
- "name": "Venus",
- "symbol": "♀︎",
- "classification": "Terrestrial planet",
- "summary": "Earth-sized but shrouded in dense clouds, with a runaway greenhouse effect.",
- "meanDistanceFromSun": {
- "kmMillions": 108.2,
- "au": 0.723
- },
- "orbitalPeriod": {
- "days": 224.701,
- "years": 0.615
- },
- "rotationPeriodHours": -5832.5,
- "radiusKm": 6051.8,
- "diameterKm": 12103.6,
- "massKg": 4.8675e24,
- "gravityMs2": 8.87,
- "escapeVelocityKms": 10.36,
- "axialTiltDeg": 177.36,
- "averageTempC": 464,
- "moons": 0,
- "atmosphere": "Very dense carbon dioxide with sulfuric acid clouds.",
- "notableFacts": [
- "Hottest planetary surface in the Solar System.",
- "Rotates retrograde (east-to-west)."
- ]
- },
- {
- "id": "earth",
- "name": "Earth",
- "symbol": "⊕",
- "classification": "Terrestrial planet",
- "summary": "The only known world with stable liquid water oceans and life.",
- "meanDistanceFromSun": {
- "kmMillions": 149.6,
- "au": 1.0
- },
- "orbitalPeriod": {
- "days": 365.256,
- "years": 1.0
- },
- "rotationPeriodHours": 23.934,
- "radiusKm": 6371,
- "diameterKm": 12742,
- "massKg": 5.97237e24,
- "gravityMs2": 9.807,
- "escapeVelocityKms": 11.186,
- "axialTiltDeg": 23.44,
- "averageTempC": 15,
- "moons": 1,
- "atmosphere": "Mostly nitrogen and oxygen.",
- "notableFacts": [
- "About 71% of the surface is covered by water.",
- "Plate tectonics helps regulate long-term climate."
- ]
- },
- {
- "id": "mars",
- "name": "Mars",
- "symbol": "♂︎",
- "classification": "Terrestrial planet",
- "summary": "A cold desert planet with the largest volcano and canyon in the Solar System.",
- "meanDistanceFromSun": {
- "kmMillions": 227.9,
- "au": 1.524
- },
- "orbitalPeriod": {
- "days": 686.98,
- "years": 1.881
- },
- "rotationPeriodHours": 24.623,
- "radiusKm": 3389.5,
- "diameterKm": 6779,
- "massKg": 6.4171e23,
- "gravityMs2": 3.721,
- "escapeVelocityKms": 5.03,
- "axialTiltDeg": 25.19,
- "averageTempC": -63,
- "moons": 2,
- "atmosphere": "Thin carbon dioxide atmosphere.",
- "notableFacts": [
- "Home to Olympus Mons and Valles Marineris.",
- "Evidence suggests ancient liquid water on its surface."
- ]
- },
- {
- "id": "jupiter",
- "name": "Jupiter",
- "symbol": "♃︎",
- "classification": "Gas giant",
- "summary": "The largest planet, with powerful storms and a deep atmosphere of hydrogen and helium.",
- "meanDistanceFromSun": {
- "kmMillions": 778.6,
- "au": 5.203
- },
- "orbitalPeriod": {
- "days": 4332.59,
- "years": 11.86
- },
- "rotationPeriodHours": 9.925,
- "radiusKm": 69911,
- "diameterKm": 139822,
- "massKg": 1.8982e27,
- "gravityMs2": 24.79,
- "escapeVelocityKms": 59.5,
- "axialTiltDeg": 3.13,
- "averageTempC": -110,
- "moons": 95,
- "atmosphere": "Mostly hydrogen and helium.",
- "notableFacts": [
- "The Great Red Spot is a centuries-old storm.",
- "Its magnetic field is the strongest of any planet."
- ]
- },
- {
- "id": "saturn",
- "name": "Saturn",
- "symbol": "♄︎",
- "classification": "Gas giant",
- "summary": "Known for its bright ring system made largely of ice particles.",
- "meanDistanceFromSun": {
- "kmMillions": 1433.5,
- "au": 9.537
- },
- "orbitalPeriod": {
- "days": 10759.22,
- "years": 29.45
- },
- "rotationPeriodHours": 10.656,
- "radiusKm": 58232,
- "diameterKm": 116464,
- "massKg": 5.6834e26,
- "gravityMs2": 10.44,
- "escapeVelocityKms": 35.5,
- "axialTiltDeg": 26.73,
- "averageTempC": -140,
- "moons": 146,
- "atmosphere": "Mostly hydrogen and helium.",
- "notableFacts": [
- "Its average density is lower than water.",
- "Rings are broad but extremely thin."
- ]
- },
- {
- "id": "uranus",
- "name": "Uranus",
- "symbol": "♅︎",
- "classification": "Ice giant",
- "summary": "An ice giant that rotates on its side relative to its orbital plane.",
- "meanDistanceFromSun": {
- "kmMillions": 2872.5,
- "au": 19.191
- },
- "orbitalPeriod": {
- "days": 30688.5,
- "years": 84.02
- },
- "rotationPeriodHours": -17.24,
- "radiusKm": 25362,
- "diameterKm": 50724,
- "massKg": 8.681e25,
- "gravityMs2": 8.69,
- "escapeVelocityKms": 21.3,
- "axialTiltDeg": 97.77,
- "averageTempC": -195,
- "moons": 28,
- "atmosphere": "Hydrogen, helium, methane.",
- "notableFacts": [
- "Its sideways tilt likely comes from an ancient giant impact.",
- "Methane in the atmosphere gives it a blue-green color."
- ]
- },
- {
- "id": "neptune",
- "name": "Neptune",
- "symbol": "♆︎",
- "classification": "Ice giant",
- "summary": "A distant, dynamic world with supersonic winds and dark storm systems.",
- "meanDistanceFromSun": {
- "kmMillions": 4495.1,
- "au": 30.07
- },
- "orbitalPeriod": {
- "days": 60182,
- "years": 164.8
- },
- "rotationPeriodHours": 16.11,
- "radiusKm": 24622,
- "diameterKm": 49244,
- "massKg": 1.02413e26,
- "gravityMs2": 11.15,
- "escapeVelocityKms": 23.5,
- "axialTiltDeg": 28.32,
- "averageTempC": -200,
- "moons": 16,
- "atmosphere": "Hydrogen, helium, methane.",
- "notableFacts": [
- "Fastest sustained winds measured on any planet.",
- "Triton, its largest moon, orbits in retrograde."
- ]
- },
- {
- "id": "pluto",
- "name": "Pluto",
- "symbol": "♇︎",
- "classification": "Dwarf planet",
- "summary": "A Kuiper Belt dwarf planet with nitrogen ice plains and a complex seasonal cycle.",
- "meanDistanceFromSun": {
- "kmMillions": 5906.4,
- "au": 39.48
- },
- "orbitalPeriod": {
- "days": 90560,
- "years": 248.0
- },
- "rotationPeriodHours": -153.3,
- "radiusKm": 1188.3,
- "diameterKm": 2376.6,
- "massKg": 1.303e22,
- "gravityMs2": 0.62,
- "escapeVelocityKms": 1.21,
- "axialTiltDeg": 122.53,
- "averageTempC": -225,
- "moons": 5,
- "atmosphere": "Thin, variable nitrogen atmosphere with methane and carbon monoxide.",
- "notableFacts": [
- "Charon is large enough that Pluto-Charon is often described as a binary system.",
- "First close-up images were captured by New Horizons in 2015."
- ]
- }
- ]
-}
diff --git a/data/planetary-correspondences.json b/data/planetary-correspondences.json
deleted file mode 100644
index a477915..0000000
--- a/data/planetary-correspondences.json
+++ /dev/null
@@ -1,86 +0,0 @@
-{
- "meta": {
- "source": "https://github.com/gadicc/magick.ly/tree/master/data",
- "derivedFrom": "data/astrology/planets.json5",
- "notes": "Planet names/symbols/magick types are adapted from magick.ly; tarot correspondences are Golden Dawn style defaults."
- },
- "planets": {
- "saturn": {
- "id": "saturn",
- "name": "Saturn",
- "symbol": "♄︎",
- "weekday": "Saturday",
- "tarot": {
- "majorArcana": "The World",
- "number": 21
- },
- "magickTypes": "Performing duty, establishing balance and equilibrium, dispelling illusions, protecting the home, legal matters, developing patience and self-discipline"
- },
- "jupiter": {
- "id": "jupiter",
- "name": "Jupiter",
- "symbol": "♃︎",
- "weekday": "Thursday",
- "tarot": {
- "majorArcana": "Wheel of Fortune",
- "number": 10
- },
- "magickTypes": "Career success, developing ambition and enthusiasm, improving fortune and luck, general health, acquiring honour, improving sense of humour, legal matters and dealing with the establishment, developing leadership skills"
- },
- "mars": {
- "id": "mars",
- "name": "Mars",
- "symbol": "♂︎",
- "weekday": "Tuesday",
- "tarot": {
- "majorArcana": "The Tower",
- "number": 16
- },
- "magickTypes": "Controlling anger, increasing courage, enhancing energy and passion, increasing vigour and sex drive"
- },
- "sol": {
- "id": "sol",
- "name": "Sol",
- "symbol": "☉︎",
- "weekday": "Sunday",
- "tarot": {
- "majorArcana": "The Sun",
- "number": 19
- },
- "magickTypes": "Career success and progression, establishing harmony, healing and improving health, leadership skills, acquiring money and resources, promotion, strengthening willpower"
- },
- "venus": {
- "id": "venus",
- "name": "Venus",
- "symbol": "♀︎",
- "weekday": "Friday",
- "tarot": {
- "majorArcana": "The Empress",
- "number": 3
- },
- "magickTypes": "Increasing attractiveness and self-confidence, beauty and passion, enhancing creativity, improving fertility, developing friendships, obtaining love"
- },
- "mercury": {
- "id": "mercury",
- "name": "Mercury",
- "symbol": "☿︎",
- "weekday": "Wednesday",
- "tarot": {
- "majorArcana": "The Magician",
- "number": 1
- },
- "magickTypes": "Business success, improving communication skills, developing knowledge and memory, diplomacy, exam success, divination, developing influence, protection when traveling by air and land, learning music"
- },
- "luna": {
- "id": "luna",
- "name": "Luna",
- "symbol": "☾︎",
- "weekday": "Monday",
- "tarot": {
- "majorArcana": "The High Priestess",
- "number": 2
- },
- "magickTypes": "Developing clairvoyance and other psychic skills, ensuring safe childbirth, divination, glamour and illusions, lucid dreaming, protection when traveling by sea"
- }
- }
-}
\ No newline at end of file
diff --git a/data/playing-cards-52.json b/data/playing-cards-52.json
deleted file mode 100644
index 794a505..0000000
--- a/data/playing-cards-52.json
+++ /dev/null
@@ -1,65 +0,0 @@
-{
- "meta": {
- "description": "Standard 52-card playing deck mapped to tarot suits and minor tarot card names.",
- "notes": "Suit mapping: Hearts→Cups, Diamonds→Pentacles, Clubs→Wands, Spades→Swords. Ace→Ace, King→Knight, Queen→Queen, Jack→Prince, 10→Princess.",
- "version": 1,
- "count": 52
- },
- "entries": [
- { "id": "AH", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "A", "rankLabel": "Ace", "rankValue": 1, "digitalRoot": 1, "tarotSuit": "Cups", "tarotCard": "Ace of Cups" },
- { "id": "2H", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "2", "rankLabel": "Two", "rankValue": 2, "digitalRoot": 2, "tarotSuit": "Cups", "tarotCard": "Two of Cups" },
- { "id": "3H", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "3", "rankLabel": "Three", "rankValue": 3, "digitalRoot": 3, "tarotSuit": "Cups", "tarotCard": "Three of Cups" },
- { "id": "4H", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "4", "rankLabel": "Four", "rankValue": 4, "digitalRoot": 4, "tarotSuit": "Cups", "tarotCard": "Four of Cups" },
- { "id": "5H", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "5", "rankLabel": "Five", "rankValue": 5, "digitalRoot": 5, "tarotSuit": "Cups", "tarotCard": "Five of Cups" },
- { "id": "6H", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "6", "rankLabel": "Six", "rankValue": 6, "digitalRoot": 6, "tarotSuit": "Cups", "tarotCard": "Six of Cups" },
- { "id": "7H", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "7", "rankLabel": "Seven", "rankValue": 7, "digitalRoot": 7, "tarotSuit": "Cups", "tarotCard": "Seven of Cups" },
- { "id": "8H", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "8", "rankLabel": "Eight", "rankValue": 8, "digitalRoot": 8, "tarotSuit": "Cups", "tarotCard": "Eight of Cups" },
- { "id": "9H", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "9", "rankLabel": "Nine", "rankValue": 9, "digitalRoot": 9, "tarotSuit": "Cups", "tarotCard": "Nine of Cups" },
- { "id": "10H", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "10", "rankLabel": "Ten", "rankValue": 10, "digitalRoot": 1, "tarotSuit": "Cups", "tarotCard": "Princess of Cups" },
- { "id": "JH", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "J", "rankLabel": "Jack", "rankValue": null, "digitalRoot": null, "tarotSuit": "Cups", "tarotCard": "Prince of Cups" },
- { "id": "QH", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "Q", "rankLabel": "Queen", "rankValue": null, "digitalRoot": null, "tarotSuit": "Cups", "tarotCard": "Queen of Cups" },
- { "id": "KH", "suit": "hearts", "suitLabel": "Hearts", "suitSymbol": "♥", "rank": "K", "rankLabel": "King", "rankValue": null, "digitalRoot": null, "tarotSuit": "Cups", "tarotCard": "Knight of Cups" },
-
- { "id": "AD", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "A", "rankLabel": "Ace", "rankValue": 1, "digitalRoot": 1, "tarotSuit": "Pentacles", "tarotCard": "Ace of Pentacles" },
- { "id": "2D", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "2", "rankLabel": "Two", "rankValue": 2, "digitalRoot": 2, "tarotSuit": "Pentacles", "tarotCard": "Two of Pentacles" },
- { "id": "3D", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "3", "rankLabel": "Three", "rankValue": 3, "digitalRoot": 3, "tarotSuit": "Pentacles", "tarotCard": "Three of Pentacles" },
- { "id": "4D", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "4", "rankLabel": "Four", "rankValue": 4, "digitalRoot": 4, "tarotSuit": "Pentacles", "tarotCard": "Four of Pentacles" },
- { "id": "5D", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "5", "rankLabel": "Five", "rankValue": 5, "digitalRoot": 5, "tarotSuit": "Pentacles", "tarotCard": "Five of Pentacles" },
- { "id": "6D", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "6", "rankLabel": "Six", "rankValue": 6, "digitalRoot": 6, "tarotSuit": "Pentacles", "tarotCard": "Six of Pentacles" },
- { "id": "7D", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "7", "rankLabel": "Seven", "rankValue": 7, "digitalRoot": 7, "tarotSuit": "Pentacles", "tarotCard": "Seven of Pentacles" },
- { "id": "8D", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "8", "rankLabel": "Eight", "rankValue": 8, "digitalRoot": 8, "tarotSuit": "Pentacles", "tarotCard": "Eight of Pentacles" },
- { "id": "9D", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "9", "rankLabel": "Nine", "rankValue": 9, "digitalRoot": 9, "tarotSuit": "Pentacles", "tarotCard": "Nine of Pentacles" },
- { "id": "10D", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "10", "rankLabel": "Ten", "rankValue": 10, "digitalRoot": 1, "tarotSuit": "Pentacles", "tarotCard": "Princess of Pentacles" },
- { "id": "JD", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "J", "rankLabel": "Jack", "rankValue": null, "digitalRoot": null, "tarotSuit": "Pentacles", "tarotCard": "Prince of Pentacles" },
- { "id": "QD", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "Q", "rankLabel": "Queen", "rankValue": null, "digitalRoot": null, "tarotSuit": "Pentacles", "tarotCard": "Queen of Pentacles" },
- { "id": "KD", "suit": "diamonds", "suitLabel": "Diamonds", "suitSymbol": "♦", "rank": "K", "rankLabel": "King", "rankValue": null, "digitalRoot": null, "tarotSuit": "Pentacles", "tarotCard": "Knight of Pentacles" },
-
- { "id": "AC", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "A", "rankLabel": "Ace", "rankValue": 1, "digitalRoot": 1, "tarotSuit": "Wands", "tarotCard": "Ace of Wands" },
- { "id": "2C", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "2", "rankLabel": "Two", "rankValue": 2, "digitalRoot": 2, "tarotSuit": "Wands", "tarotCard": "Two of Wands" },
- { "id": "3C", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "3", "rankLabel": "Three", "rankValue": 3, "digitalRoot": 3, "tarotSuit": "Wands", "tarotCard": "Three of Wands" },
- { "id": "4C", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "4", "rankLabel": "Four", "rankValue": 4, "digitalRoot": 4, "tarotSuit": "Wands", "tarotCard": "Four of Wands" },
- { "id": "5C", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "5", "rankLabel": "Five", "rankValue": 5, "digitalRoot": 5, "tarotSuit": "Wands", "tarotCard": "Five of Wands" },
- { "id": "6C", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "6", "rankLabel": "Six", "rankValue": 6, "digitalRoot": 6, "tarotSuit": "Wands", "tarotCard": "Six of Wands" },
- { "id": "7C", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "7", "rankLabel": "Seven", "rankValue": 7, "digitalRoot": 7, "tarotSuit": "Wands", "tarotCard": "Seven of Wands" },
- { "id": "8C", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "8", "rankLabel": "Eight", "rankValue": 8, "digitalRoot": 8, "tarotSuit": "Wands", "tarotCard": "Eight of Wands" },
- { "id": "9C", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "9", "rankLabel": "Nine", "rankValue": 9, "digitalRoot": 9, "tarotSuit": "Wands", "tarotCard": "Nine of Wands" },
- { "id": "10C", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "10", "rankLabel": "Ten", "rankValue": 10, "digitalRoot": 1, "tarotSuit": "Wands", "tarotCard": "Princess of Wands" },
- { "id": "JC", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "J", "rankLabel": "Jack", "rankValue": null, "digitalRoot": null, "tarotSuit": "Wands", "tarotCard": "Prince of Wands" },
- { "id": "QC", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "Q", "rankLabel": "Queen", "rankValue": null, "digitalRoot": null, "tarotSuit": "Wands", "tarotCard": "Queen of Wands" },
- { "id": "KC", "suit": "clubs", "suitLabel": "Clubs", "suitSymbol": "♣", "rank": "K", "rankLabel": "King", "rankValue": null, "digitalRoot": null, "tarotSuit": "Wands", "tarotCard": "Knight of Wands" },
-
- { "id": "AS", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "A", "rankLabel": "Ace", "rankValue": 1, "digitalRoot": 1, "tarotSuit": "Swords", "tarotCard": "Ace of Swords" },
- { "id": "2S", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "2", "rankLabel": "Two", "rankValue": 2, "digitalRoot": 2, "tarotSuit": "Swords", "tarotCard": "Two of Swords" },
- { "id": "3S", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "3", "rankLabel": "Three", "rankValue": 3, "digitalRoot": 3, "tarotSuit": "Swords", "tarotCard": "Three of Swords" },
- { "id": "4S", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "4", "rankLabel": "Four", "rankValue": 4, "digitalRoot": 4, "tarotSuit": "Swords", "tarotCard": "Four of Swords" },
- { "id": "5S", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "5", "rankLabel": "Five", "rankValue": 5, "digitalRoot": 5, "tarotSuit": "Swords", "tarotCard": "Five of Swords" },
- { "id": "6S", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "6", "rankLabel": "Six", "rankValue": 6, "digitalRoot": 6, "tarotSuit": "Swords", "tarotCard": "Six of Swords" },
- { "id": "7S", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "7", "rankLabel": "Seven", "rankValue": 7, "digitalRoot": 7, "tarotSuit": "Swords", "tarotCard": "Seven of Swords" },
- { "id": "8S", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "8", "rankLabel": "Eight", "rankValue": 8, "digitalRoot": 8, "tarotSuit": "Swords", "tarotCard": "Eight of Swords" },
- { "id": "9S", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "9", "rankLabel": "Nine", "rankValue": 9, "digitalRoot": 9, "tarotSuit": "Swords", "tarotCard": "Nine of Swords" },
- { "id": "10S", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "10", "rankLabel": "Ten", "rankValue": 10, "digitalRoot": 1, "tarotSuit": "Swords", "tarotCard": "Princess of Swords" },
- { "id": "JS", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "J", "rankLabel": "Jack", "rankValue": null, "digitalRoot": null, "tarotSuit": "Swords", "tarotCard": "Prince of Swords" },
- { "id": "QS", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "Q", "rankLabel": "Queen", "rankValue": null, "digitalRoot": null, "tarotSuit": "Swords", "tarotCard": "Queen of Swords" },
- { "id": "KS", "suit": "spades", "suitLabel": "Spades", "suitSymbol": "♠", "rank": "K", "rankLabel": "King", "rankValue": null, "digitalRoot": null, "tarotSuit": "Swords", "tarotCard": "Knight of Swords" }
- ]
-}
diff --git a/data/sabian-symbols.json b/data/sabian-symbols.json
deleted file mode 100644
index 4a13887..0000000
--- a/data/sabian-symbols.json
+++ /dev/null
@@ -1,2166 +0,0 @@
-{
- "source": "https://sabiansymbols.astrologyweekly.com/list.php",
- "count": 360,
- "symbols": [
- {
- "absoluteDegree": 1,
- "sign": "Aries",
- "degreeInSign": 1,
- "phrase": "A WOMAN HAS RISEN OUT OF THE OCEAN, A SEAL IS EMBRACING HER."
- },
- {
- "absoluteDegree": 2,
- "sign": "Aries",
- "degreeInSign": 2,
- "phrase": "A COMEDIAN ENTERTAINING THE GROUP."
- },
- {
- "absoluteDegree": 3,
- "sign": "Aries",
- "degreeInSign": 3,
- "phrase": "A CAMEO PROFILE OF A MAN IN THE OUTLINE OF HIS COUNTRY."
- },
- {
- "absoluteDegree": 4,
- "sign": "Aries",
- "degreeInSign": 4,
- "phrase": "TWO LOVERS STROLLING THROUGH A SECLUDED WALK."
- },
- {
- "absoluteDegree": 5,
- "sign": "Aries",
- "degreeInSign": 5,
- "phrase": "A TRIANGLE WITH WINGS."
- },
- {
- "absoluteDegree": 6,
- "sign": "Aries",
- "degreeInSign": 6,
- "phrase": "A SQUARE BRIGHTLY LIGHTED ON ONE SIDE."
- },
- {
- "absoluteDegree": 7,
- "sign": "Aries",
- "degreeInSign": 7,
- "phrase": "A MAN SUCCESSFULLY EXPRESSING HIMSELF IN TWO REALMS AT ONCE."
- },
- {
- "absoluteDegree": 8,
- "sign": "Aries",
- "degreeInSign": 8,
- "phrase": "A WOMAN'S HAT WITH STREAMERS BLOWN BY THE EAST WIND."
- },
- {
- "absoluteDegree": 9,
- "sign": "Aries",
- "degreeInSign": 9,
- "phrase": "A CRYSTAL GAZER."
- },
- {
- "absoluteDegree": 10,
- "sign": "Aries",
- "degreeInSign": 10,
- "phrase": "A TEACHER GIVES NEW SYMBOLIC FORMS TO TRADITIONAL IMAGES."
- },
- {
- "absoluteDegree": 11,
- "sign": "Aries",
- "degreeInSign": 11,
- "phrase": "THE RULER OF A NATION."
- },
- {
- "absoluteDegree": 12,
- "sign": "Aries",
- "degreeInSign": 12,
- "phrase": "A FLOCK OF WILD GEESE."
- },
- {
- "absoluteDegree": 13,
- "sign": "Aries",
- "degreeInSign": 13,
- "phrase": "A BOMB WHICH FAILED TO EXPLODE IS NOW SAFELY CONCEALED."
- },
- {
- "absoluteDegree": 14,
- "sign": "Aries",
- "degreeInSign": 14,
- "phrase": "A SERPENT COILING NEAR A MAN AND A WOMAN."
- },
- {
- "absoluteDegree": 15,
- "sign": "Aries",
- "degreeInSign": 15,
- "phrase": "AN INDIAN WEAVING A BLANKET."
- },
- {
- "absoluteDegree": 16,
- "sign": "Aries",
- "degreeInSign": 16,
- "phrase": "BROWNIES DANCING IN THE SETTING SUN."
- },
- {
- "absoluteDegree": 17,
- "sign": "Aries",
- "degreeInSign": 17,
- "phrase": "TWO PRIM SPINSTERS SITTING TOGETHER IN SILENCE."
- },
- {
- "absoluteDegree": 18,
- "sign": "Aries",
- "degreeInSign": 18,
- "phrase": "AN EMPTY HAMMOCK."
- },
- {
- "absoluteDegree": 19,
- "sign": "Aries",
- "degreeInSign": 19,
- "phrase": "THE MAGIC CARPET OF ORIENTAL IMAGERY."
- },
- {
- "absoluteDegree": 20,
- "sign": "Aries",
- "degreeInSign": 20,
- "phrase": "A YOUNG GIRL FEEDING BIRDS IN WINTER."
- },
- {
- "absoluteDegree": 21,
- "sign": "Aries",
- "degreeInSign": 21,
- "phrase": "A PUGILIST (BOXER) ENTERING THE RING."
- },
- {
- "absoluteDegree": 22,
- "sign": "Aries",
- "degreeInSign": 22,
- "phrase": "THE GATE TO THE GARDEN OF ALL FULFILLED DESIRES."
- },
- {
- "absoluteDegree": 23,
- "sign": "Aries",
- "degreeInSign": 23,
- "phrase": "A WOMAN IN PASTEL COLORS CARRYING A HEAVY AND VALUABLE BUT VEILED LOAD."
- },
- {
- "absoluteDegree": 24,
- "sign": "Aries",
- "degreeInSign": 24,
- "phrase": "AN OPEN WINDOW AND A NET CURTAIN BLOWING INTO A CORNUCOPIA."
- },
- {
- "absoluteDegree": 25,
- "sign": "Aries",
- "degreeInSign": 25,
- "phrase": "A DOUBLE PROMISE REVEALS ITS INNER AND OUTER MEANINGS."
- },
- {
- "absoluteDegree": 26,
- "sign": "Aries",
- "degreeInSign": 26,
- "phrase": "A MAN POSSESSED OF MORE GIFTS THAN HE CAN HOLD."
- },
- {
- "absoluteDegree": 27,
- "sign": "Aries",
- "degreeInSign": 27,
- "phrase": "THROUGH IMAGINATION, A LOST OPPORTUNITY IS REGAINED."
- },
- {
- "absoluteDegree": 28,
- "sign": "Aries",
- "degreeInSign": 28,
- "phrase": "A LARGE DISAPPOINTED AUDIENCE."
- },
- {
- "absoluteDegree": 29,
- "sign": "Aries",
- "degreeInSign": 29,
- "phrase": "THE MUSIC OF THE SPHERES."
- },
- {
- "absoluteDegree": 30,
- "sign": "Aries",
- "degreeInSign": 30,
- "phrase": "A DUCK POND AND ITS BROOD."
- },
- {
- "absoluteDegree": 31,
- "sign": "Taurus",
- "degreeInSign": 1,
- "phrase": "A CLEAR MOUNTAIN STREAM."
- },
- {
- "absoluteDegree": 32,
- "sign": "Taurus",
- "degreeInSign": 2,
- "phrase": "AN ELECTRICAL STORM."
- },
- {
- "absoluteDegree": 33,
- "sign": "Taurus",
- "degreeInSign": 3,
- "phrase": "STEPS UP TO A LAWN BLOOMING WITH CLOVER."
- },
- {
- "absoluteDegree": 34,
- "sign": "Taurus",
- "degreeInSign": 4,
- "phrase": "THE POT OF GOLD AT THE END OF THE RAINBOW."
- },
- {
- "absoluteDegree": 35,
- "sign": "Taurus",
- "degreeInSign": 5,
- "phrase": "A WIDOW AT AN OPEN GRAVE."
- },
- {
- "absoluteDegree": 36,
- "sign": "Taurus",
- "degreeInSign": 6,
- "phrase": "A BRIDGE BEING BUILT ACROSS A GORGE."
- },
- {
- "absoluteDegree": 37,
- "sign": "Taurus",
- "degreeInSign": 7,
- "phrase": "A WOMAN OF SAMARIA COMES TO DRAW WATER FROM THE WELL."
- },
- {
- "absoluteDegree": 38,
- "sign": "Taurus",
- "degreeInSign": 8,
- "phrase": "A SLEIGH WITHOUT SNOW."
- },
- {
- "absoluteDegree": 39,
- "sign": "Taurus",
- "degreeInSign": 9,
- "phrase": "A CHRISTMAS TREE DECORATED."
- },
- {
- "absoluteDegree": 40,
- "sign": "Taurus",
- "degreeInSign": 10,
- "phrase": "A RED CROSS NURSE."
- },
- {
- "absoluteDegree": 41,
- "sign": "Taurus",
- "degreeInSign": 11,
- "phrase": "A WOMAN SPRINKLING FLOWERS."
- },
- {
- "absoluteDegree": 42,
- "sign": "Taurus",
- "degreeInSign": 12,
- "phrase": "A YOUNG COUPLE WALK DOWN MAIN- STREET, WINDOW-SHOPPING."
- },
- {
- "absoluteDegree": 43,
- "sign": "Taurus",
- "degreeInSign": 13,
- "phrase": "A PORTER CARRYING HEAVY BAGGAGE."
- },
- {
- "absoluteDegree": 44,
- "sign": "Taurus",
- "degreeInSign": 14,
- "phrase": "ON THE BEACH, CHILDREN PLAY WHILE SHELLFISH GROPE AT THE EDGE OF THE WATER."
- },
- {
- "absoluteDegree": 45,
- "sign": "Taurus",
- "degreeInSign": 15,
- "phrase": "A MAN WITH RAKISH SILK HAT, MUFFLED AGAINST THE COLD, BRAVES A STORM."
- },
- {
- "absoluteDegree": 46,
- "sign": "Taurus",
- "degreeInSign": 16,
- "phrase": "AN OLD TEACHER FAILS TO INTEREST HIS PUPILS IN TRADITIONAL KNOWLEDGE."
- },
- {
- "absoluteDegree": 47,
- "sign": "Taurus",
- "degreeInSign": 17,
- "phrase": "A SYMBOLICAL BATTLE BETWEEN 'SWORDS' AND 'TORCHES'."
- },
- {
- "absoluteDegree": 48,
- "sign": "Taurus",
- "degreeInSign": 18,
- "phrase": "A WOMAN AIRING AN OLD BAG THROUGH A SUNNY WINDOW."
- },
- {
- "absoluteDegree": 49,
- "sign": "Taurus",
- "degreeInSign": 19,
- "phrase": "A NEW CONTINENT RISING OUT OF THE OCEAN."
- },
- {
- "absoluteDegree": 50,
- "sign": "Taurus",
- "degreeInSign": 20,
- "phrase": "WISPS OF CLOUDS, LIKE WINGS, ARE STREAMING ACROSS THE SKY."
- },
- {
- "absoluteDegree": 51,
- "sign": "Taurus",
- "degreeInSign": 21,
- "phrase": "MOVING FINGER POINTS TO SIGNIFICANT PASSAGES IN A BOOK."
- },
- {
- "absoluteDegree": 52,
- "sign": "Taurus",
- "degreeInSign": 22,
- "phrase": "WHITE DOVE FLYING OVER TROUBLED WATERS."
- },
- {
- "absoluteDegree": 53,
- "sign": "Taurus",
- "degreeInSign": 23,
- "phrase": "A JEWELLERY SHOP FILLED WITH THE MOST MAGNIFICENT JEWELS."
- },
- {
- "absoluteDegree": 54,
- "sign": "Taurus",
- "degreeInSign": 24,
- "phrase": "AN INDIAN WARRIOR RIDING FIERCELY, HUMAN SCALPS HANGING AT HIS BELT."
- },
- {
- "absoluteDegree": 55,
- "sign": "Taurus",
- "degreeInSign": 25,
- "phrase": "A LARGE WELL-KEPT PUBLIC PARK."
- },
- {
- "absoluteDegree": 56,
- "sign": "Taurus",
- "degreeInSign": 26,
- "phrase": "A SPANIARD SERENADING HIS SENORITA."
- },
- {
- "absoluteDegree": 57,
- "sign": "Taurus",
- "degreeInSign": 27,
- "phrase": "AN OLD INDIAN WOMAN SELLING BEADS."
- },
- {
- "absoluteDegree": 58,
- "sign": "Taurus",
- "degreeInSign": 28,
- "phrase": "A MATURE WOMAN REAWAKENED TO ROMANCE."
- },
- {
- "absoluteDegree": 59,
- "sign": "Taurus",
- "degreeInSign": 29,
- "phrase": "TWO COBBLERS WORKING AT A TABLE."
- },
- {
- "absoluteDegree": 60,
- "sign": "Taurus",
- "degreeInSign": 30,
- "phrase": "A PEACOCK PARADING ON THE TERRACE OF AN OLD CASTLE."
- },
- {
- "absoluteDegree": 61,
- "sign": "Gemini",
- "degreeInSign": 1,
- "phrase": "A GLASS-BOTTOMED BOAT REVEALS UNDER-SEA WONDERS."
- },
- {
- "absoluteDegree": 62,
- "sign": "Gemini",
- "degreeInSign": 2,
- "phrase": "SANTA CLAUSE FILLING STOCKINGS FURTIVELY."
- },
- {
- "absoluteDegree": 63,
- "sign": "Gemini",
- "degreeInSign": 3,
- "phrase": "THE GARDEN OF THE TUILERIES IN PARIS."
- },
- {
- "absoluteDegree": 64,
- "sign": "Gemini",
- "degreeInSign": 4,
- "phrase": "HOLLY AND MISTLETOE BRING CHRISTMAS SPIRIT TO A HOME."
- },
- {
- "absoluteDegree": 65,
- "sign": "Gemini",
- "degreeInSign": 5,
- "phrase": "A RADICAL MAGAZINE, ASKING FOR ACTION, DISPLAYS A SENSATIONAL FRONT PAGE."
- },
- {
- "absoluteDegree": 66,
- "sign": "Gemini",
- "degreeInSign": 6,
- "phrase": "WORKMEN DRILLING FOR OIL."
- },
- {
- "absoluteDegree": 67,
- "sign": "Gemini",
- "degreeInSign": 7,
- "phrase": "AN OLD-FASHIONED WELL."
- },
- {
- "absoluteDegree": 68,
- "sign": "Gemini",
- "degreeInSign": 8,
- "phrase": "AROUSED STRIKERS ROUND A FACTORY."
- },
- {
- "absoluteDegree": 69,
- "sign": "Gemini",
- "degreeInSign": 9,
- "phrase": "A QUIVER FILLED WITH ARROWS."
- },
- {
- "absoluteDegree": 70,
- "sign": "Gemini",
- "degreeInSign": 10,
- "phrase": "AEROPLANE PERFORMING A NOSE-DIVE."
- },
- {
- "absoluteDegree": 71,
- "sign": "Gemini",
- "degreeInSign": 11,
- "phrase": "NEWLY OPENED LANDS OFFER THE PIONEER NEW OPPORTUNITIES FOR EXPERIENCE."
- },
- {
- "absoluteDegree": 72,
- "sign": "Gemini",
- "degreeInSign": 12,
- "phrase": "A BLACK SLAVE-GIRL DEMANDS HER RIGHTS OF HER MISTRESS."
- },
- {
- "absoluteDegree": 73,
- "sign": "Gemini",
- "degreeInSign": 13,
- "phrase": "WORLD FAMOUS PIANIST GIVING A CONCERT PERFORMANCE."
- },
- {
- "absoluteDegree": 74,
- "sign": "Gemini",
- "degreeInSign": 14,
- "phrase": "TWO PEOPLE, LIVING FAR APART, IN TELEPATHIC COMMUNICATION."
- },
- {
- "absoluteDegree": 75,
- "sign": "Gemini",
- "degreeInSign": 15,
- "phrase": "TWO DUTCH CHILDREN TALKING."
- },
- {
- "absoluteDegree": 76,
- "sign": "Gemini",
- "degreeInSign": 16,
- "phrase": "A WOMAN ACTIVIST IN AN EMOTIONAL SPEECH, DRAMATIZING HER CAUSE."
- },
- {
- "absoluteDegree": 77,
- "sign": "Gemini",
- "degreeInSign": 17,
- "phrase": "THE HEAD OF A ROBUST YOUTH CHANGES INTO THAT OF A MATURE THINKER."
- },
- {
- "absoluteDegree": 78,
- "sign": "Gemini",
- "degreeInSign": 18,
- "phrase": "TWO CHINESE MEN TALKING CHINESE (IN A WESTERN CROWD)."
- },
- {
- "absoluteDegree": 79,
- "sign": "Gemini",
- "degreeInSign": 19,
- "phrase": "A LARGE ARCHAIC VOLUME REVEALS A TRADITIONAL WISDOM."
- },
- {
- "absoluteDegree": 80,
- "sign": "Gemini",
- "degreeInSign": 20,
- "phrase": "A CAFETERIA WITH AN ABUNDANCE OF CHOICES."
- },
- {
- "absoluteDegree": 81,
- "sign": "Gemini",
- "degreeInSign": 21,
- "phrase": "A TUMULTUOUS LABOR DEMONSTRATION."
- },
- {
- "absoluteDegree": 82,
- "sign": "Gemini",
- "degreeInSign": 22,
- "phrase": "DANCING COUPLES CROWD THE BARN IN A HARVEST FESTIVAL."
- },
- {
- "absoluteDegree": 83,
- "sign": "Gemini",
- "degreeInSign": 23,
- "phrase": "THREE FLEDGLINGS IN A NEST HIGH IN A TREE."
- },
- {
- "absoluteDegree": 84,
- "sign": "Gemini",
- "degreeInSign": 24,
- "phrase": "CHILDREN SKATING ON ICE."
- },
- {
- "absoluteDegree": 85,
- "sign": "Gemini",
- "degreeInSign": 25,
- "phrase": "A GARDENER TRIMMING LARGE PALM TREES."
- },
- {
- "absoluteDegree": 86,
- "sign": "Gemini",
- "degreeInSign": 26,
- "phrase": "WINTER FROST IN THE WOODS."
- },
- {
- "absoluteDegree": 87,
- "sign": "Gemini",
- "degreeInSign": 27,
- "phrase": "A YOUNG GYPSY EMERGING FROM THE WOODS GAZES AT FAR CITIES."
- },
- {
- "absoluteDegree": 88,
- "sign": "Gemini",
- "degreeInSign": 28,
- "phrase": "SOCIETY GRANTING BANKRUPTCY TO HIM, A MAN LEAVES THE COURT."
- },
- {
- "absoluteDegree": 89,
- "sign": "Gemini",
- "degreeInSign": 29,
- "phrase": "THE FIRST MOCKINGBIRD OF SPRING SINGS FROM THE TREE TOP."
- },
- {
- "absoluteDegree": 90,
- "sign": "Gemini",
- "degreeInSign": 30,
- "phrase": "A PARADE OF BATHING BEAUTIES BEFORE LARGE BEACH CROWDS."
- },
- {
- "absoluteDegree": 91,
- "sign": "Cancer",
- "degreeInSign": 1,
- "phrase": "ON A SHIP THE SAILORS LOWER AN OLD FLAG AND RAISE A NEW ONE."
- },
- {
- "absoluteDegree": 92,
- "sign": "Cancer",
- "degreeInSign": 2,
- "phrase": "A MAN ON A MAGIC CARPET OBSERVES VAST VISTAS BELOW HIM."
- },
- {
- "absoluteDegree": 93,
- "sign": "Cancer",
- "degreeInSign": 3,
- "phrase": "AN ARCTIC EXPLORER LEADS A REINDEER THROUGH ICY CANYONS."
- },
- {
- "absoluteDegree": 94,
- "sign": "Cancer",
- "degreeInSign": 4,
- "phrase": "A CAT ARGUING WITH A MOUSE."
- },
- {
- "absoluteDegree": 95,
- "sign": "Cancer",
- "degreeInSign": 5,
- "phrase": "AT A RAILROAD CROSSING, AN AUTOMOBILE IS WRECKED BY A TRAIN."
- },
- {
- "absoluteDegree": 96,
- "sign": "Cancer",
- "degreeInSign": 6,
- "phrase": "GAME BIRDS FEATHERING THEIR NESTS."
- },
- {
- "absoluteDegree": 97,
- "sign": "Cancer",
- "degreeInSign": 7,
- "phrase": "TWO FAIRIES (NATURE SPIRITS) DANCING ON A MOONLIT NIGHT."
- },
- {
- "absoluteDegree": 98,
- "sign": "Cancer",
- "degreeInSign": 8,
- "phrase": "A GROUP RABBITS DRESSED IN CLOTHES AND ON PARADE."
- },
- {
- "absoluteDegree": 99,
- "sign": "Cancer",
- "degreeInSign": 9,
- "phrase": "A SMALL, NAKED GIRL BENDS OVER A POND TRYING TO CATCH A FISH."
- },
- {
- "absoluteDegree": 100,
- "sign": "Cancer",
- "degreeInSign": 10,
- "phrase": "A LARGE DIAMOND IN THE FIRST STAGES OF THE CUTTING PROCESS."
- },
- {
- "absoluteDegree": 101,
- "sign": "Cancer",
- "degreeInSign": 11,
- "phrase": "A CLOWN CARICATURING WELL-KNOWN PERSONALITIES."
- },
- {
- "absoluteDegree": 102,
- "sign": "Cancer",
- "degreeInSign": 12,
- "phrase": "A CHINESE WOMAN NURSING A BABY WHOSE AURA REVEALS HIM TO BE THE REINCARNATION OF A GREAT TEACHER."
- },
- {
- "absoluteDegree": 103,
- "sign": "Cancer",
- "degreeInSign": 13,
- "phrase": "ONE HAND SLIGHTLY FLEXED WITH A VERY PROMINENT THUMB."
- },
- {
- "absoluteDegree": 104,
- "sign": "Cancer",
- "degreeInSign": 14,
- "phrase": "A VERY OLD MAN FACING A VAST DARK SPACE TO THE NORTHEAST."
- },
- {
- "absoluteDegree": 105,
- "sign": "Cancer",
- "degreeInSign": 15,
- "phrase": "A GROUP OF PEOPLE WHO HAVE OVEREATEN AND ENJOYED IT."
- },
- {
- "absoluteDegree": 106,
- "sign": "Cancer",
- "degreeInSign": 16,
- "phrase": "A MAN STUDYING A MANDALA IN FRONT OF HIM, WITH THE HELP OF A VERY ANCIENT BOOK."
- },
- {
- "absoluteDegree": 107,
- "sign": "Cancer",
- "degreeInSign": 17,
- "phrase": "THE SEED GROWS INTO KNOWLEDGE AND LIFE."
- },
- {
- "absoluteDegree": 108,
- "sign": "Cancer",
- "degreeInSign": 18,
- "phrase": "A HEN SCRATCHING FOR HER CHICKS."
- },
- {
- "absoluteDegree": 109,
- "sign": "Cancer",
- "degreeInSign": 19,
- "phrase": "A PRIEST PERFORMING A MARRIAGE CEREMONY."
- },
- {
- "absoluteDegree": 110,
- "sign": "Cancer",
- "degreeInSign": 20,
- "phrase": "VENETIAN GONDOLIERS IN A SERENADE."
- },
- {
- "absoluteDegree": 111,
- "sign": "Cancer",
- "degreeInSign": 21,
- "phrase": "A PRIMA DONNA SINGING."
- },
- {
- "absoluteDegree": 112,
- "sign": "Cancer",
- "degreeInSign": 22,
- "phrase": "A YOUNG WOMAN AWAITING A SAILBOAT."
- },
- {
- "absoluteDegree": 113,
- "sign": "Cancer",
- "degreeInSign": 23,
- "phrase": "THE MEETING OF A LITERARY SOCIETY."
- },
- {
- "absoluteDegree": 114,
- "sign": "Cancer",
- "degreeInSign": 24,
- "phrase": "A WOMAN AND TWO MEN CASTAWAYS ON A SMALL ISLAND OF THE SOUTH SEAS."
- },
- {
- "absoluteDegree": 115,
- "sign": "Cancer",
- "degreeInSign": 25,
- "phrase": "A LEADER OF MEN WRAPPED IN AN INVISIBLE MANTLE OF POWER."
- },
- {
- "absoluteDegree": 116,
- "sign": "Cancer",
- "degreeInSign": 26,
- "phrase": "GUESTS ARE READING IN THE LIBRARY OF A LUXURIOUS HOME."
- },
- {
- "absoluteDegree": 117,
- "sign": "Cancer",
- "degreeInSign": 27,
- "phrase": "A VIOLENT STORM IN A CANYON FILLED WITH EXPENSIVE HOMES."
- },
- {
- "absoluteDegree": 118,
- "sign": "Cancer",
- "degreeInSign": 28,
- "phrase": "INDIAN GIRL INTRODUCES COLLEGE BOY-FRIEND TO HER ASSEMBLED TRIBE."
- },
- {
- "absoluteDegree": 119,
- "sign": "Cancer",
- "degreeInSign": 29,
- "phrase": "A GREEK MUSE WEIGHING NEW BORN TWINS IN GOLDEN SCALES."
- },
- {
- "absoluteDegree": 120,
- "sign": "Cancer",
- "degreeInSign": 30,
- "phrase": "A DAUGHTER OF THE AMERICAN REVOLUTION."
- },
- {
- "absoluteDegree": 121,
- "sign": "Leo",
- "degreeInSign": 1,
- "phrase": "UNDER EMOTIONAL STRESS, BLOOD RUSHES TO A MAN'S HEAD."
- },
- {
- "absoluteDegree": 122,
- "sign": "Leo",
- "degreeInSign": 2,
- "phrase": "AN EPIDEMIC OF MUMPS."
- },
- {
- "absoluteDegree": 123,
- "sign": "Leo",
- "degreeInSign": 3,
- "phrase": "A MATURE WOMAN, KEEPING UP WITH THE TIMES, HAVING HER HAIR BOBBED."
- },
- {
- "absoluteDegree": 124,
- "sign": "Leo",
- "degreeInSign": 4,
- "phrase": "A MAN FORMALLY DRESSED STANDS NEAR TROPHIES HE BROUGHT BACK FROM A HUNTING EXPEDITION."
- },
- {
- "absoluteDegree": 125,
- "sign": "Leo",
- "degreeInSign": 5,
- "phrase": "ROCK FORMATIONS TOWER OVER A DEEP CANYON."
- },
- {
- "absoluteDegree": 126,
- "sign": "Leo",
- "degreeInSign": 6,
- "phrase": "AN OLD FASHIONED 'CONSERVATIVE' WOMAN IS CONFRONTED BY AN UP-TO-DATE GIRL."
- },
- {
- "absoluteDegree": 127,
- "sign": "Leo",
- "degreeInSign": 7,
- "phrase": "THE CONSTELLATIONS OF STARS IN THE SKY."
- },
- {
- "absoluteDegree": 128,
- "sign": "Leo",
- "degreeInSign": 8,
- "phrase": "GLASS BLOWERS SHAPE BEAUTIFUL VASES WITH THEIR CONTROLLED BREATHING."
- },
- {
- "absoluteDegree": 129,
- "sign": "Leo",
- "degreeInSign": 9,
- "phrase": "A COMMUNIST ACTIVIST SPREADING HIS REVOLUTIONARY IDEALS."
- },
- {
- "absoluteDegree": 130,
- "sign": "Leo",
- "degreeInSign": 10,
- "phrase": "EARLY MORNING DEW."
- },
- {
- "absoluteDegree": 131,
- "sign": "Leo",
- "degreeInSign": 11,
- "phrase": "CHILDREN ON A SWING IN A HUGE OAK TREE."
- },
- {
- "absoluteDegree": 132,
- "sign": "Leo",
- "degreeInSign": 12,
- "phrase": "AN EVENING LAWN PARTY OF ADULTS."
- },
- {
- "absoluteDegree": 133,
- "sign": "Leo",
- "degreeInSign": 13,
- "phrase": "AN OLD SEA CAPTAIN ROCKING ON THE PORCH OF HIS COTTAGE."
- },
- {
- "absoluteDegree": 134,
- "sign": "Leo",
- "degreeInSign": 14,
- "phrase": "CHERUB-LIKE, A HUMAN SOUL WHISPERS, SEEKING TO MANIFEST."
- },
- {
- "absoluteDegree": 135,
- "sign": "Leo",
- "degreeInSign": 15,
- "phrase": "A PAGEANT MOVING ALONG A STREET PACKED WITH PEOPLE."
- },
- {
- "absoluteDegree": 136,
- "sign": "Leo",
- "degreeInSign": 16,
- "phrase": "BRILLIANT SUNSHINE JUST AFTER A STORM."
- },
- {
- "absoluteDegree": 137,
- "sign": "Leo",
- "degreeInSign": 17,
- "phrase": "VOLUNTEER CHURCH CHOIR MAKES SOCIAL EVENT OF REHEARSAL."
- },
- {
- "absoluteDegree": 138,
- "sign": "Leo",
- "degreeInSign": 18,
- "phrase": "A CHEMIST CONDUCTS AN EXPERIMENT FOR HIS STUDENTS."
- },
- {
- "absoluteDegree": 139,
- "sign": "Leo",
- "degreeInSign": 19,
- "phrase": "A HOUSEBOAT PARTY."
- },
- {
- "absoluteDegree": 140,
- "sign": "Leo",
- "degreeInSign": 20,
- "phrase": "AMERICAN INDIANS PERFORM A RITUAL TO THE SUN."
- },
- {
- "absoluteDegree": 141,
- "sign": "Leo",
- "degreeInSign": 21,
- "phrase": "INTOXICATED CHICKENS DIZZILY FLAP THEIR WINGS TRYING TO FLY."
- },
- {
- "absoluteDegree": 142,
- "sign": "Leo",
- "degreeInSign": 22,
- "phrase": "A CARRIER PIGEON FULFILLING ITS MISSION."
- },
- {
- "absoluteDegree": 143,
- "sign": "Leo",
- "degreeInSign": 23,
- "phrase": "A BAREBACK RIDER IN A CIRCUS DISPLAYS HER DANGEROUS SKILL."
- },
- {
- "absoluteDegree": 144,
- "sign": "Leo",
- "degreeInSign": 24,
- "phrase": "TOTALLY CONCENTRATED UPON INNER SPIRITUAL ATTAINMENT, A MAN IS SITTING IN A STATE OF COMPLETE NEGLECT OF HIS BODY."
- },
- {
- "absoluteDegree": 145,
- "sign": "Leo",
- "degreeInSign": 25,
- "phrase": "A LARGE CAMEL CROSSING A VAST AND FORBIDDING DESERT."
- },
- {
- "absoluteDegree": 146,
- "sign": "Leo",
- "degreeInSign": 26,
- "phrase": "AFTER A HEAVY STORM, A RAINBOW."
- },
- {
- "absoluteDegree": 147,
- "sign": "Leo",
- "degreeInSign": 27,
- "phrase": "DAYBREAK - THE LUMINESCENCE OF DAWN IN THE EASTERN SKY."
- },
- {
- "absoluteDegree": 148,
- "sign": "Leo",
- "degreeInSign": 28,
- "phrase": "MANY LITTLE BIRDS ON THE LIMB OF A LARGE TREE."
- },
- {
- "absoluteDegree": 149,
- "sign": "Leo",
- "degreeInSign": 29,
- "phrase": "A MERMAID EMERGES FROM THE OCEAN READY FOR REBIRTH IN HUMAN FORM."
- },
- {
- "absoluteDegree": 150,
- "sign": "Leo",
- "degreeInSign": 30,
- "phrase": "AN UNSEALED LETTER."
- },
- {
- "absoluteDegree": 151,
- "sign": "Virgo",
- "degreeInSign": 1,
- "phrase": "IN A PORTRAIT THE BEST OF A MAN'S FEATURES AND TRAITS ARE IDEALIZED."
- },
- {
- "absoluteDegree": 152,
- "sign": "Virgo",
- "degreeInSign": 2,
- "phrase": "A LARGE WHITE CROSS-DOMINATING THE LANDSCAPE-STANDS ALONE ON TOP OF A HIGH HILL."
- },
- {
- "absoluteDegree": 153,
- "sign": "Virgo",
- "degreeInSign": 3,
- "phrase": "TWO GUARDIAN ANGELS BRINGING PROTECTION."
- },
- {
- "absoluteDegree": 154,
- "sign": "Virgo",
- "degreeInSign": 4,
- "phrase": "BLACK AND WHITE CHILDREN PLAYING HAPPILY TOGETHER."
- },
- {
- "absoluteDegree": 155,
- "sign": "Virgo",
- "degreeInSign": 5,
- "phrase": "A MAN BECOMING AWARE OF NATURE SPIRITS AND NORMALLY UNSEEN SPIRITUAL ENERGIES."
- },
- {
- "absoluteDegree": 156,
- "sign": "Virgo",
- "degreeInSign": 6,
- "phrase": "A MERRY-GO-ROUND."
- },
- {
- "absoluteDegree": 157,
- "sign": "Virgo",
- "degreeInSign": 7,
- "phrase": "A HAREM."
- },
- {
- "absoluteDegree": 158,
- "sign": "Virgo",
- "degreeInSign": 8,
- "phrase": "A GIRL TAKES HER FIRST DANCING INSTRUCTION."
- },
- {
- "absoluteDegree": 159,
- "sign": "Virgo",
- "degreeInSign": 9,
- "phrase": "A EXPRESSIONIST PAINTER MAKING A FUTURISTIC DRAWING."
- },
- {
- "absoluteDegree": 160,
- "sign": "Virgo",
- "degreeInSign": 10,
- "phrase": "TWO HEADS LOOKING OUT AND BEYOND THE SHADOWS."
- },
- {
- "absoluteDegree": 161,
- "sign": "Virgo",
- "degreeInSign": 11,
- "phrase": "A BOY MOULDED IN HIS MOTHER'S ASPIRATIONS FOR HIM."
- },
- {
- "absoluteDegree": 162,
- "sign": "Virgo",
- "degreeInSign": 12,
- "phrase": "A BRIDE WITH HER VEIL SNATCHED AWAY."
- },
- {
- "absoluteDegree": 163,
- "sign": "Virgo",
- "degreeInSign": 13,
- "phrase": "A POWERFUL STATESMAN OVERCOMES A STATE OF POLITICAL HYSTERIA."
- },
- {
- "absoluteDegree": 164,
- "sign": "Virgo",
- "degreeInSign": 14,
- "phrase": "A FAMILY TREE."
- },
- {
- "absoluteDegree": 165,
- "sign": "Virgo",
- "degreeInSign": 15,
- "phrase": "A FINE LACE ORNAMENTAL HANDKERCHIEF."
- },
- {
- "absoluteDegree": 166,
- "sign": "Virgo",
- "degreeInSign": 16,
- "phrase": "CHILDREN CROWD AROUND THE ORANG-UTANG CAGE IN A ZOO."
- },
- {
- "absoluteDegree": 167,
- "sign": "Virgo",
- "degreeInSign": 17,
- "phrase": "A VOLCANIC ERUPTION."
- },
- {
- "absoluteDegree": 168,
- "sign": "Virgo",
- "degreeInSign": 18,
- "phrase": "TWO GIRLS PLAYING WITH A OUIJA BOARD."
- },
- {
- "absoluteDegree": 169,
- "sign": "Virgo",
- "degreeInSign": 19,
- "phrase": "A SWIMMING RACE."
- },
- {
- "absoluteDegree": 170,
- "sign": "Virgo",
- "degreeInSign": 20,
- "phrase": "A CARAVAN OF CARS HEADED FOR PROMISED LANDS."
- },
- {
- "absoluteDegree": 171,
- "sign": "Virgo",
- "degreeInSign": 21,
- "phrase": "A GIRL'S BASKETBALL TEAM."
- },
- {
- "absoluteDegree": 172,
- "sign": "Virgo",
- "degreeInSign": 22,
- "phrase": "A ROYAL COAT OF ARMS ENRICHED WITH PRECIOUS STONES."
- },
- {
- "absoluteDegree": 173,
- "sign": "Virgo",
- "degreeInSign": 23,
- "phrase": "A LION-TAMER RUSHES FEARLESSLY INTO THE CIRCUS ARENA."
- },
- {
- "absoluteDegree": 174,
- "sign": "Virgo",
- "degreeInSign": 24,
- "phrase": "MARY AND HER WHITE LAMB."
- },
- {
- "absoluteDegree": 175,
- "sign": "Virgo",
- "degreeInSign": 25,
- "phrase": "A FLAG AT HALF-MAST IN FRONT OF A PUBLIC BUILDING."
- },
- {
- "absoluteDegree": 176,
- "sign": "Virgo",
- "degreeInSign": 26,
- "phrase": "A BOY WITH A CENSER SERVES NEAR THE PRIEST AT THE ALTAR."
- },
- {
- "absoluteDegree": 177,
- "sign": "Virgo",
- "degreeInSign": 27,
- "phrase": "ARISTOCRATIC ELDERLY LADIES DRINKING AFTERNOON TEA IN A WEALTHY HOME."
- },
- {
- "absoluteDegree": 178,
- "sign": "Virgo",
- "degreeInSign": 28,
- "phrase": "A BALD-HEADED MAN WHO HAS SEIZED POWER."
- },
- {
- "absoluteDegree": 179,
- "sign": "Virgo",
- "degreeInSign": 29,
- "phrase": "A MAN GAINING SECRET KNOWLEDGE FROM AN ANCIENT SCROLL HE IS READING."
- },
- {
- "absoluteDegree": 180,
- "sign": "Virgo",
- "degreeInSign": 30,
- "phrase": "HAVING AN URGENT TASK TO COMPLETE, A MAN DOESN'T LOOK TO ANY DISTRACTIONS."
- },
- {
- "absoluteDegree": 181,
- "sign": "Libra",
- "degreeInSign": 1,
- "phrase": "A BUTTERFLY PRESERVED AND MADE PERFECT WITH A DART THROUGH IT."
- },
- {
- "absoluteDegree": 182,
- "sign": "Libra",
- "degreeInSign": 2,
- "phrase": "THE LIGHT OF THE SIXTH RACE TRANSMUTED TO THE SEVENTH."
- },
- {
- "absoluteDegree": 183,
- "sign": "Libra",
- "degreeInSign": 3,
- "phrase": "THE DAWN OF A NEW DAY REVEALS EVERYTHING CHANGED."
- },
- {
- "absoluteDegree": 184,
- "sign": "Libra",
- "degreeInSign": 4,
- "phrase": "A GROUP OF YOUNG PEOPLE SIT IN SPIRITUAL COMMUNION AROUND A CAMPFIRE."
- },
- {
- "absoluteDegree": 185,
- "sign": "Libra",
- "degreeInSign": 5,
- "phrase": "A MAN TEACHING THE TRUE INNER KNOWLEDGE OF THE NEW WORLD TO HIS STUDENTS."
- },
- {
- "absoluteDegree": 186,
- "sign": "Libra",
- "degreeInSign": 6,
- "phrase": "A MAN WATCHES HIS IDEALS TAKING A CONCRETE FORM BEFORE HIS INNER VISION."
- },
- {
- "absoluteDegree": 187,
- "sign": "Libra",
- "degreeInSign": 7,
- "phrase": "A WOMAN FEEDING CHICKENS AND PROTECTING THEM FROM THE HAWKS."
- },
- {
- "absoluteDegree": 188,
- "sign": "Libra",
- "degreeInSign": 8,
- "phrase": "A BLAZING FIREPLACE IN A DESERTED HOME."
- },
- {
- "absoluteDegree": 189,
- "sign": "Libra",
- "degreeInSign": 9,
- "phrase": "THREE OLD MASTERS HANGING IN A SPECIAL ROOM IN AN ART GALLERY."
- },
- {
- "absoluteDegree": 190,
- "sign": "Libra",
- "degreeInSign": 10,
- "phrase": "A CANOE APPROACHING SAFETY THROUGH DANGEROUS WATERS."
- },
- {
- "absoluteDegree": 191,
- "sign": "Libra",
- "degreeInSign": 11,
- "phrase": "A PROFESSOR PEERING OVER HIS GLASSES AT HIS STUDENTS."
- },
- {
- "absoluteDegree": 192,
- "sign": "Libra",
- "degreeInSign": 12,
- "phrase": "MINERS ARE EMERGING FROM A DEEP COAL MINE."
- },
- {
- "absoluteDegree": 193,
- "sign": "Libra",
- "degreeInSign": 13,
- "phrase": "CHILDREN BLOWING SOAP BUBBLES."
- },
- {
- "absoluteDegree": 194,
- "sign": "Libra",
- "degreeInSign": 14,
- "phrase": "IN THE HEAT OF THE NOON, A MAN TAKES A SIESTA."
- },
- {
- "absoluteDegree": 195,
- "sign": "Libra",
- "degreeInSign": 15,
- "phrase": "CIRCULAR PATHS."
- },
- {
- "absoluteDegree": 196,
- "sign": "Libra",
- "degreeInSign": 16,
- "phrase": "AFTER A STORM, A BOAT LANDING STANDS IN NEED OF RECONSTRUCTION."
- },
- {
- "absoluteDegree": 197,
- "sign": "Libra",
- "degreeInSign": 17,
- "phrase": "A RETIRED SEA CAPTAIN WATCHES SHIPS ENTERING AND LEAVING THE HARBOUR."
- },
- {
- "absoluteDegree": 198,
- "sign": "Libra",
- "degreeInSign": 18,
- "phrase": "TWO MEN PLACED UNDER ARREST."
- },
- {
- "absoluteDegree": 199,
- "sign": "Libra",
- "degreeInSign": 19,
- "phrase": "A GANG OF ROBBERS IN HIDING."
- },
- {
- "absoluteDegree": 200,
- "sign": "Libra",
- "degreeInSign": 20,
- "phrase": "A JEWISH RABBI PERFORMING HIS DUTIES."
- },
- {
- "absoluteDegree": 201,
- "sign": "Libra",
- "degreeInSign": 21,
- "phrase": "A CROWD UPON A BEACH."
- },
- {
- "absoluteDegree": 202,
- "sign": "Libra",
- "degreeInSign": 22,
- "phrase": "A CHILD GIVING BIRDS A DRINK AT A FOUNTAIN."
- },
- {
- "absoluteDegree": 203,
- "sign": "Libra",
- "degreeInSign": 23,
- "phrase": "CHANTICLEER'S VOICE HERALDS THE RISING SUN WITH EXUBERANT TONES."
- },
- {
- "absoluteDegree": 204,
- "sign": "Libra",
- "degreeInSign": 24,
- "phrase": "A THIRD WING ON THE LEFT SIDE OF A BUTTERFLY."
- },
- {
- "absoluteDegree": 205,
- "sign": "Libra",
- "degreeInSign": 25,
- "phrase": "THE SIGHT OF AN AUTUMN LEAF BRINGS TO A PILGRIM THE SUDDEN REVELATION OF THE MYSTERY OF LIFE AND DEATH."
- },
- {
- "absoluteDegree": 206,
- "sign": "Libra",
- "degreeInSign": 26,
- "phrase": "AN EAGLE AND A LARGE WHITE DOVE TURNING INTO EACH OTHER."
- },
- {
- "absoluteDegree": 207,
- "sign": "Libra",
- "degreeInSign": 27,
- "phrase": "AN AIRPLANE SAILS, HIGH IN THE CLEAR SKY."
- },
- {
- "absoluteDegree": 208,
- "sign": "Libra",
- "degreeInSign": 28,
- "phrase": "A MAN IN DEEP GLOOM. UNNOTICED, ANGELS COME TO HIS HELP."
- },
- {
- "absoluteDegree": 209,
- "sign": "Libra",
- "degreeInSign": 29,
- "phrase": "MANKIND'S VAST ENDURING EFFORT TO REACH FOR KNOWLEDGE TRANSFERABLE FROM GENERATION TO GENERATION. KNOWLEDGE."
- },
- {
- "absoluteDegree": 210,
- "sign": "Libra",
- "degreeInSign": 30,
- "phrase": "THREE MOUNDS OF KNOWLEDGE ON A PHILOSOPHER'S HEAD."
- },
- {
- "absoluteDegree": 211,
- "sign": "Scorpio",
- "degreeInSign": 1,
- "phrase": "A SIGHT-SEEING BUS FILLED WITH TOURISTS."
- },
- {
- "absoluteDegree": 212,
- "sign": "Scorpio",
- "degreeInSign": 2,
- "phrase": "A BROKEN BOTTLE AND SPILLED PERFUME."
- },
- {
- "absoluteDegree": 213,
- "sign": "Scorpio",
- "degreeInSign": 3,
- "phrase": "NEIGHBOURS HELP IN A HOUSE- RAISING PARTY IN A SMALL VILLAGE."
- },
- {
- "absoluteDegree": 214,
- "sign": "Scorpio",
- "degreeInSign": 4,
- "phrase": "A YOUTH HOLDING A LIGHTED CANDLE IN A DEVOTIONAL RITUAL."
- },
- {
- "absoluteDegree": 215,
- "sign": "Scorpio",
- "degreeInSign": 5,
- "phrase": "A MASSIVE, ROCKY SHORE RESISTS THE POUNDING OF THE SEA."
- },
- {
- "absoluteDegree": 216,
- "sign": "Scorpio",
- "degreeInSign": 6,
- "phrase": "A GOLD RUSH TEARS MEN AWAY FROM THEIR NATIVE SOIL."
- },
- {
- "absoluteDegree": 217,
- "sign": "Scorpio",
- "degreeInSign": 7,
- "phrase": "DEEP-SEA DIVERS."
- },
- {
- "absoluteDegree": 218,
- "sign": "Scorpio",
- "degreeInSign": 8,
- "phrase": "THE MOON SHINING ACROSS A LAKE."
- },
- {
- "absoluteDegree": 219,
- "sign": "Scorpio",
- "degreeInSign": 9,
- "phrase": "A DENTIST AT WORK."
- },
- {
- "absoluteDegree": 220,
- "sign": "Scorpio",
- "degreeInSign": 10,
- "phrase": "A FELLOWSHIP SUPPER REUNITES OLD COMRADES."
- },
- {
- "absoluteDegree": 221,
- "sign": "Scorpio",
- "degreeInSign": 11,
- "phrase": "A DROWNING MAN IS BEING RESCUED."
- },
- {
- "absoluteDegree": 222,
- "sign": "Scorpio",
- "degreeInSign": 12,
- "phrase": "AN OFFICIAL EMBASSY BALL."
- },
- {
- "absoluteDegree": 223,
- "sign": "Scorpio",
- "degreeInSign": 13,
- "phrase": "AN INVENTOR PERFORMS A LABORATORY EXPERIMENT."
- },
- {
- "absoluteDegree": 224,
- "sign": "Scorpio",
- "degreeInSign": 14,
- "phrase": "TELEPHONE LINEMEN AT WORK INSTALLING NEW CONNECTIONS."
- },
- {
- "absoluteDegree": 225,
- "sign": "Scorpio",
- "degreeInSign": 15,
- "phrase": "CHILDREN PLAYING AROUND FIVE MOUNDS OF SAND."
- },
- {
- "absoluteDegree": 226,
- "sign": "Scorpio",
- "degreeInSign": 16,
- "phrase": "A GIRL'S FACE BREAKING INTO A SMILE."
- },
- {
- "absoluteDegree": 227,
- "sign": "Scorpio",
- "degreeInSign": 17,
- "phrase": "A WOMAN, FILLED WITH HER OWN SPIRIT, IS THE FATHER OF HER OWN CHILD."
- },
- {
- "absoluteDegree": 228,
- "sign": "Scorpio",
- "degreeInSign": 18,
- "phrase": "A PATH THROUGH WOODS RICH IN AUTUMN COLORING."
- },
- {
- "absoluteDegree": 229,
- "sign": "Scorpio",
- "degreeInSign": 19,
- "phrase": "A PARROT LISTENING AND THEN TALKING, REPEATS A CONVERSATION HE HAS OVERHEARD."
- },
- {
- "absoluteDegree": 230,
- "sign": "Scorpio",
- "degreeInSign": 20,
- "phrase": "A WOMAN DRAWING ASIDE TWO DARK CURTAINS THAT CLOSED THE ENTRANCE TO A SACRED PATHWAY."
- },
- {
- "absoluteDegree": 231,
- "sign": "Scorpio",
- "degreeInSign": 21,
- "phrase": "OBEYING HIS CONSCIENCE, A SOLDIER RESISTS ORDERS."
- },
- {
- "absoluteDegree": 232,
- "sign": "Scorpio",
- "degreeInSign": 22,
- "phrase": "HUNTERS SHOOTING WILD DUCKS."
- },
- {
- "absoluteDegree": 233,
- "sign": "Scorpio",
- "degreeInSign": 23,
- "phrase": "A RABBIT METAMORPHOSED INTO A FAIRY (NATURE SPIRIT)."
- },
- {
- "absoluteDegree": 234,
- "sign": "Scorpio",
- "degreeInSign": 24,
- "phrase": "CROWDS COMING DOWN THE MOUNTAIN TO LISTEN TO ONE INSPIRED MAN."
- },
- {
- "absoluteDegree": 235,
- "sign": "Scorpio",
- "degreeInSign": 25,
- "phrase": "AN X RAY PHOTOGRAPH."
- },
- {
- "absoluteDegree": 236,
- "sign": "Scorpio",
- "degreeInSign": 26,
- "phrase": "INDIANS MAKING CAMP (IN NEW TERRITORY)"
- },
- {
- "absoluteDegree": 237,
- "sign": "Scorpio",
- "degreeInSign": 27,
- "phrase": "A MILITARY BAND MARCHES NOISILY ON THROUGH THE CITY STREETS."
- },
- {
- "absoluteDegree": 238,
- "sign": "Scorpio",
- "degreeInSign": 28,
- "phrase": "THE KING OF THE FAIRIES APPROACHING HIS DOMAIN."
- },
- {
- "absoluteDegree": 239,
- "sign": "Scorpio",
- "degreeInSign": 29,
- "phrase": "AN INDIAN WOMAN PLEADING TO THE CHIEF FOR THE LIVES OF HER CHILDREN."
- },
- {
- "absoluteDegree": 240,
- "sign": "Scorpio",
- "degreeInSign": 30,
- "phrase": "CHILDREN IN HALLOWEEN COSTUMES INDULGING IN VARIOUS PRANKS."
- },
- {
- "absoluteDegree": 241,
- "sign": "Sagittarius",
- "degreeInSign": 1,
- "phrase": "RETIRED ARMY VETERANS GATHER TO REAWAKEN OLD MEMORIES."
- },
- {
- "absoluteDegree": 242,
- "sign": "Sagittarius",
- "degreeInSign": 2,
- "phrase": "THE OCEAN COVERED WITH WHITECAPS."
- },
- {
- "absoluteDegree": 243,
- "sign": "Sagittarius",
- "degreeInSign": 3,
- "phrase": "TWO MEN PLAYING CHESS."
- },
- {
- "absoluteDegree": 244,
- "sign": "Sagittarius",
- "degreeInSign": 4,
- "phrase": "A LITTLE CHILD LEARNING TO WALK."
- },
- {
- "absoluteDegree": 245,
- "sign": "Sagittarius",
- "degreeInSign": 5,
- "phrase": "AN OLD OWL UP IN A TREE."
- },
- {
- "absoluteDegree": 246,
- "sign": "Sagittarius",
- "degreeInSign": 6,
- "phrase": "A GAME OF CRICKET."
- },
- {
- "absoluteDegree": 247,
- "sign": "Sagittarius",
- "degreeInSign": 7,
- "phrase": "CUPID KNOCKING AT THE DOOR OF A HUMAN HEART."
- },
- {
- "absoluteDegree": 248,
- "sign": "Sagittarius",
- "degreeInSign": 8,
- "phrase": "DEEP WITHIN THE DEPTHS OF THE EARTH, NEW ELEMENTS ARE BEING FORMED."
- },
- {
- "absoluteDegree": 249,
- "sign": "Sagittarius",
- "degreeInSign": 9,
- "phrase": "A MOTHER LEADS HER SMALL CHILD STEP BY STEP UP THE STAIRS."
- },
- {
- "absoluteDegree": 250,
- "sign": "Sagittarius",
- "degreeInSign": 10,
- "phrase": "A THEATRICAL REPRESENTATION OF A GOLDEN HAIRED 'GODDESS OF OPPORTUNITY'."
- },
- {
- "absoluteDegree": 251,
- "sign": "Sagittarius",
- "degreeInSign": 11,
- "phrase": "THE LAMP OF PHYSICAL ENLIGHTENMENT AT THE LEFT TEMPLE."
- },
- {
- "absoluteDegree": 252,
- "sign": "Sagittarius",
- "degreeInSign": 12,
- "phrase": "A FLAG THAT TURNS INTO AN EAGLE THAT CROWS."
- },
- {
- "absoluteDegree": 253,
- "sign": "Sagittarius",
- "degreeInSign": 13,
- "phrase": "A WIDOW'S PAST IS BROUGHT TO LIGHT."
- },
- {
- "absoluteDegree": 254,
- "sign": "Sagittarius",
- "degreeInSign": 14,
- "phrase": "THE PYRAMIDS AND THE SPHINX."
- },
- {
- "absoluteDegree": 255,
- "sign": "Sagittarius",
- "degreeInSign": 15,
- "phrase": "THE GROUND HOG LOOKING FOR ITS SHADOW ON GROUND HOG DAY."
- },
- {
- "absoluteDegree": 256,
- "sign": "Sagittarius",
- "degreeInSign": 16,
- "phrase": "SEA GULLS FLY AROUND A SHIP LOOKING FOR FOOD."
- },
- {
- "absoluteDegree": 257,
- "sign": "Sagittarius",
- "degreeInSign": 17,
- "phrase": "AN EASTER SUNRISE SERVICE."
- },
- {
- "absoluteDegree": 258,
- "sign": "Sagittarius",
- "degreeInSign": 18,
- "phrase": "TINY CHILDREN IN SUNBONNETS."
- },
- {
- "absoluteDegree": 259,
- "sign": "Sagittarius",
- "degreeInSign": 19,
- "phrase": "PELICANS, DISTURBED BY THE GARBAGE OF PEOPLE MOVE THEIR YOUNG TO A NEW HABITAT."
- },
- {
- "absoluteDegree": 260,
- "sign": "Sagittarius",
- "degreeInSign": 20,
- "phrase": "IN WINTER PEOPLE CUTTING ICE FROM A FROZEN POND, FOR SUMMER USE."
- },
- {
- "absoluteDegree": 261,
- "sign": "Sagittarius",
- "degreeInSign": 21,
- "phrase": "A CHILD AND A DOG WEARING BORROWED EYEGLASSES."
- },
- {
- "absoluteDegree": 262,
- "sign": "Sagittarius",
- "degreeInSign": 22,
- "phrase": "A CHINESE LAUNDRY."
- },
- {
- "absoluteDegree": 263,
- "sign": "Sagittarius",
- "degreeInSign": 23,
- "phrase": "IMMIGRANTS ENTERING A NEW COUNTRY."
- },
- {
- "absoluteDegree": 264,
- "sign": "Sagittarius",
- "degreeInSign": 24,
- "phrase": "A BLUEBIRD STANDING AT THE DOOR OF THE HOUSE."
- },
- {
- "absoluteDegree": 265,
- "sign": "Sagittarius",
- "degreeInSign": 25,
- "phrase": "A CHUBBY BOY ON A HOBBYHORSE."
- },
- {
- "absoluteDegree": 266,
- "sign": "Sagittarius",
- "degreeInSign": 26,
- "phrase": "A FLAG-BEARER IN A BATTLE."
- },
- {
- "absoluteDegree": 267,
- "sign": "Sagittarius",
- "degreeInSign": 27,
- "phrase": "THE SCULPTOR'S VISION IS TAKING FORM."
- },
- {
- "absoluteDegree": 268,
- "sign": "Sagittarius",
- "degreeInSign": 28,
- "phrase": "AN OLD BRIDGE OVER A BEAUTIFUL STREAM IN CONSTANT USE."
- },
- {
- "absoluteDegree": 269,
- "sign": "Sagittarius",
- "degreeInSign": 29,
- "phrase": "A FAT BOY MOWING THE LAWN."
- },
- {
- "absoluteDegree": 270,
- "sign": "Sagittarius",
- "degreeInSign": 30,
- "phrase": "THE POPE BLESSING THE FAITHFUL."
- },
- {
- "absoluteDegree": 271,
- "sign": "Capricorn",
- "degreeInSign": 1,
- "phrase": "AN INDIAN CHIEF CLAIMS POWER FROM THE ASSEMBLED TRIBE."
- },
- {
- "absoluteDegree": 272,
- "sign": "Capricorn",
- "degreeInSign": 2,
- "phrase": "THREE STAINED-GLASS WINDOWS IN A GOTHIC CHURCH, ONE DAMAGED BY WAR."
- },
- {
- "absoluteDegree": 273,
- "sign": "Capricorn",
- "degreeInSign": 3,
- "phrase": "THE HUMAN SOUL, IN ITS EAGERNESS FOR NEW EXPERIENCES, SEEKS EMBODIMENT."
- },
- {
- "absoluteDegree": 274,
- "sign": "Capricorn",
- "degreeInSign": 4,
- "phrase": "A GROUP OF PEOPLE ENTERING A LARGE CANOE FOR A JOURNEY BY WATER."
- },
- {
- "absoluteDegree": 275,
- "sign": "Capricorn",
- "degreeInSign": 5,
- "phrase": "INDIANS - SOME ROWING A CANOE AND OTHERS DANCING A WAR DANCE IN IT."
- },
- {
- "absoluteDegree": 276,
- "sign": "Capricorn",
- "degreeInSign": 6,
- "phrase": "TEN LOGS LIE UNDER AN ARCHWAY LEADING TO DARKER WOODS."
- },
- {
- "absoluteDegree": 277,
- "sign": "Capricorn",
- "degreeInSign": 7,
- "phrase": "A VEILED PROPHET SPEAKS, SEIZED BY THE POWER OF A GOD."
- },
- {
- "absoluteDegree": 278,
- "sign": "Capricorn",
- "degreeInSign": 8,
- "phrase": "BIRDS IN THE HOUSE SINGING HAPPILY."
- },
- {
- "absoluteDegree": 279,
- "sign": "Capricorn",
- "degreeInSign": 9,
- "phrase": "AN ANGEL CARRYING A HARP."
- },
- {
- "absoluteDegree": 280,
- "sign": "Capricorn",
- "degreeInSign": 10,
- "phrase": "AN ALBATROSS FEEDING FROM THE HAND OF A SAILOR."
- },
- {
- "absoluteDegree": 281,
- "sign": "Capricorn",
- "degreeInSign": 11,
- "phrase": "PHEASANTS DISPLAY THEIR BRILLIANT COLORS ON A PRIVATE ESTATE."
- },
- {
- "absoluteDegree": 282,
- "sign": "Capricorn",
- "degreeInSign": 12,
- "phrase": "A STUDENT OF NATURE LECTURING REVEALING LITTLE-KNOWN ASPECTS OF LIFE."
- },
- {
- "absoluteDegree": 283,
- "sign": "Capricorn",
- "degreeInSign": 13,
- "phrase": "A FIRE WORSHIPPER MEDITATES ON THE ULTIMATE REALITIES OF EXISTENCE."
- },
- {
- "absoluteDegree": 284,
- "sign": "Capricorn",
- "degreeInSign": 14,
- "phrase": "AN ANCIENT BAS-RELIEF CARVED IN GRANITE REMAINS A WITNESS TO A LONG- FORGOTTEN CULTURE."
- },
- {
- "absoluteDegree": 285,
- "sign": "Capricorn",
- "degreeInSign": 15,
- "phrase": "IN A HOSPITAL, THE CHILDREN'S WARD IS FILLED WITH TOYS."
- },
- {
- "absoluteDegree": 286,
- "sign": "Capricorn",
- "degreeInSign": 16,
- "phrase": "SCHOOL GROUNDS FILLED WITH BOYS AND GIRLS IN GYMNASIUM SUITS."
- },
- {
- "absoluteDegree": 287,
- "sign": "Capricorn",
- "degreeInSign": 17,
- "phrase": "A GIRL SURREPTITIOUSLY BATHING IN THE NUDE."
- },
- {
- "absoluteDegree": 288,
- "sign": "Capricorn",
- "degreeInSign": 18,
- "phrase": "THE UNION JACK FLIES FROM A NEW BRITISH WARSHIP."
- },
- {
- "absoluteDegree": 289,
- "sign": "Capricorn",
- "degreeInSign": 19,
- "phrase": "A CHILD OF ABOUT FIVE CARRYING A HUGE SHOPPING BAG FILLED WITH GROCERIES."
- },
- {
- "absoluteDegree": 290,
- "sign": "Capricorn",
- "degreeInSign": 20,
- "phrase": "A HIDDEN CHOIR SINGING DURING A RELIGIOUS SERVICE."
- },
- {
- "absoluteDegree": 291,
- "sign": "Capricorn",
- "degreeInSign": 21,
- "phrase": "A RELAY RACE."
- },
- {
- "absoluteDegree": 292,
- "sign": "Capricorn",
- "degreeInSign": 22,
- "phrase": "A GENERAL ACCEPTING DEFEAT GRACEFULLY."
- },
- {
- "absoluteDegree": 293,
- "sign": "Capricorn",
- "degreeInSign": 23,
- "phrase": "A SOLDIER RECEIVING TWO AWARDS FOR BRAVERY IN COMBAT."
- },
- {
- "absoluteDegree": 294,
- "sign": "Capricorn",
- "degreeInSign": 24,
- "phrase": "A WOMAN ENTERING A CONVENT."
- },
- {
- "absoluteDegree": 295,
- "sign": "Capricorn",
- "degreeInSign": 25,
- "phrase": "AN ORIENTAL RUG DEALER IN A STORE FILLED WITH PRECIOUS ORNAMENTAL RUGS."
- },
- {
- "absoluteDegree": 296,
- "sign": "Capricorn",
- "degreeInSign": 26,
- "phrase": "A NATURE SPIRIT DANCING IN THE MIST OF A WATERFALL."
- },
- {
- "absoluteDegree": 297,
- "sign": "Capricorn",
- "degreeInSign": 27,
- "phrase": "A MOUNTAIN PILGRIMAGE."
- },
- {
- "absoluteDegree": 298,
- "sign": "Capricorn",
- "degreeInSign": 28,
- "phrase": "A LARGE AVIARY."
- },
- {
- "absoluteDegree": 299,
- "sign": "Capricorn",
- "degreeInSign": 29,
- "phrase": "A WOMAN READING TEA LEAVES."
- },
- {
- "absoluteDegree": 300,
- "sign": "Capricorn",
- "degreeInSign": 30,
- "phrase": "DIRECTORS OF A LARGE FIRM MEET IN SECRET CONFERENCE."
- },
- {
- "absoluteDegree": 301,
- "sign": "Aquarius",
- "degreeInSign": 1,
- "phrase": "AN OLD ADOBE MISSION."
- },
- {
- "absoluteDegree": 302,
- "sign": "Aquarius",
- "degreeInSign": 2,
- "phrase": "AN UNEXPECTED THUNDERSTORM."
- },
- {
- "absoluteDegree": 303,
- "sign": "Aquarius",
- "degreeInSign": 3,
- "phrase": "A DESERTER FROM THE NAVY."
- },
- {
- "absoluteDegree": 304,
- "sign": "Aquarius",
- "degreeInSign": 4,
- "phrase": "A HINDU HEALER."
- },
- {
- "absoluteDegree": 305,
- "sign": "Aquarius",
- "degreeInSign": 5,
- "phrase": "A COUNCIL OF ANCESTORS."
- },
- {
- "absoluteDegree": 306,
- "sign": "Aquarius",
- "degreeInSign": 6,
- "phrase": "A MASKED FIGURE PERFORMS RITUALISTIC ACTS IN A MYSTERY PLAY."
- },
- {
- "absoluteDegree": 307,
- "sign": "Aquarius",
- "degreeInSign": 7,
- "phrase": "A CHILD BORN OUT OF AN EGGSHELL."
- },
- {
- "absoluteDegree": 308,
- "sign": "Aquarius",
- "degreeInSign": 8,
- "phrase": "BEAUTIFULLY GOWNED WAX FIGURES ON DISPLAY."
- },
- {
- "absoluteDegree": 309,
- "sign": "Aquarius",
- "degreeInSign": 9,
- "phrase": "A FLAG IS SEEN TURNING INTO AN EAGLE."
- },
- {
- "absoluteDegree": 310,
- "sign": "Aquarius",
- "degreeInSign": 10,
- "phrase": "A POPULARITY THAT PROVES TO BE FLEETING."
- },
- {
- "absoluteDegree": 311,
- "sign": "Aquarius",
- "degreeInSign": 11,
- "phrase": "DURING A SILENT HOUR, A MAN RECEIVES A NEW INSPIRATION WHICH MAY CHANGE HIS LIFE."
- },
- {
- "absoluteDegree": 312,
- "sign": "Aquarius",
- "degreeInSign": 12,
- "phrase": "PEOPLE ON A VAST STAIRCASE, GRADUATED UPWARDS."
- },
- {
- "absoluteDegree": 313,
- "sign": "Aquarius",
- "degreeInSign": 13,
- "phrase": "A BAROMETER."
- },
- {
- "absoluteDegree": 314,
- "sign": "Aquarius",
- "degreeInSign": 14,
- "phrase": "A TRAIN ENTERING A TUNNEL."
- },
- {
- "absoluteDegree": 315,
- "sign": "Aquarius",
- "degreeInSign": 15,
- "phrase": "TWO LOVEBIRDS SITTING ON A FENCE AND SINGING HAPPILY."
- },
- {
- "absoluteDegree": 316,
- "sign": "Aquarius",
- "degreeInSign": 16,
- "phrase": "A BIG-BUSINESSMAN AT HIS DESK."
- },
- {
- "absoluteDegree": 317,
- "sign": "Aquarius",
- "degreeInSign": 17,
- "phrase": "A WATCHDOG STANDING GUARD, PROTECTING HIS MASTER AND HIS POSSESSIONS."
- },
- {
- "absoluteDegree": 318,
- "sign": "Aquarius",
- "degreeInSign": 18,
- "phrase": "A MAN BEING UNMASKED AT A MASQUERADE."
- },
- {
- "absoluteDegree": 319,
- "sign": "Aquarius",
- "degreeInSign": 19,
- "phrase": "A FOREST FIRE QUENCHED."
- },
- {
- "absoluteDegree": 320,
- "sign": "Aquarius",
- "degreeInSign": 20,
- "phrase": "A LARGE WHITE DOVE BEARING A MESSAGE."
- },
- {
- "absoluteDegree": 321,
- "sign": "Aquarius",
- "degreeInSign": 21,
- "phrase": "A WOMAN DISAPPOINTED AND DISILLUSIONED, COURAGEOUSLY FACING A SEEMINGLY EMPTY LIFE."
- },
- {
- "absoluteDegree": 322,
- "sign": "Aquarius",
- "degreeInSign": 22,
- "phrase": "A RUG PLACED ON A FLOOR FOR CHILDREN TO PLAY ON."
- },
- {
- "absoluteDegree": 323,
- "sign": "Aquarius",
- "degreeInSign": 23,
- "phrase": "A BIG BEAR SITTING DOWN AND WAVING ALL ITS PAWS."
- },
- {
- "absoluteDegree": 324,
- "sign": "Aquarius",
- "degreeInSign": 24,
- "phrase": "A MAN TURNING HIS BACK ON HIS PASSIONS TEACHES DEEP WISDOM FROM HIS EXPERIENCE."
- },
- {
- "absoluteDegree": 325,
- "sign": "Aquarius",
- "degreeInSign": 25,
- "phrase": "A BUTTERFLY WITH THE RIGHT WING MORE PERFECTLY FORMED."
- },
- {
- "absoluteDegree": 326,
- "sign": "Aquarius",
- "degreeInSign": 26,
- "phrase": "A GARAGE MAN TESTING A CAR'S BATTERY WITH A HYDROMETER."
- },
- {
- "absoluteDegree": 327,
- "sign": "Aquarius",
- "degreeInSign": 27,
- "phrase": "AN ANCIENT POTTERY BOWL FILLED WITH FRESH VIOLETS."
- },
- {
- "absoluteDegree": 328,
- "sign": "Aquarius",
- "degreeInSign": 28,
- "phrase": "A TREE FELLED AND SAWED TO ENSURE A SUPPLY OF WOOD FOR THE WINTER."
- },
- {
- "absoluteDegree": 329,
- "sign": "Aquarius",
- "degreeInSign": 29,
- "phrase": "BUTTERFLY EMERGING FROM A CHRYSALIS."
- },
- {
- "absoluteDegree": 330,
- "sign": "Aquarius",
- "degreeInSign": 30,
- "phrase": "MOON-LIT FIELDS, ONCE BABYLON, ARE BLOOMING WHITE."
- },
- {
- "absoluteDegree": 331,
- "sign": "Pisces",
- "degreeInSign": 1,
- "phrase": "A CROWDED PUBLIC MARKET PLACE."
- },
- {
- "absoluteDegree": 332,
- "sign": "Pisces",
- "degreeInSign": 2,
- "phrase": "A SQUIRREL HIDING FROM HUNTERS."
- },
- {
- "absoluteDegree": 333,
- "sign": "Pisces",
- "degreeInSign": 3,
- "phrase": "A PETRIFIED FOREST."
- },
- {
- "absoluteDegree": 334,
- "sign": "Pisces",
- "degreeInSign": 4,
- "phrase": "HEAVY CAR TRAFFIC ON A NARROW ISTHMUS LINKING TWO SEASIDE RESORTS."
- },
- {
- "absoluteDegree": 335,
- "sign": "Pisces",
- "degreeInSign": 5,
- "phrase": "A CHURCH BAZAAR."
- },
- {
- "absoluteDegree": 336,
- "sign": "Pisces",
- "degreeInSign": 6,
- "phrase": "A PARADE OF ARMY OFFICERS IN FULL DRESS."
- },
- {
- "absoluteDegree": 337,
- "sign": "Pisces",
- "degreeInSign": 7,
- "phrase": "ILLUMINATED BY A SHAFT OF LIGHT, A LARGE CROSS LIES ON ROCKS SURROUNDED BY SEA AND MIST."
- },
- {
- "absoluteDegree": 338,
- "sign": "Pisces",
- "degreeInSign": 8,
- "phrase": "A GIRL BLOWING A BUGLE."
- },
- {
- "absoluteDegree": 339,
- "sign": "Pisces",
- "degreeInSign": 9,
- "phrase": "THE RACE BEGINS: INTENT ON OUTDISTANCING HIS RIVALS, A JOCKEY SPURS HIS HORSE TO GREAT SPEED."
- },
- {
- "absoluteDegree": 340,
- "sign": "Pisces",
- "degreeInSign": 10,
- "phrase": "AN AVIATOR IN THE CLOUDS."
- },
- {
- "absoluteDegree": 341,
- "sign": "Pisces",
- "degreeInSign": 11,
- "phrase": "MEN TRAVELLING A NARROW PATH, SEEKING ILLUMINATION."
- },
- {
- "absoluteDegree": 342,
- "sign": "Pisces",
- "degreeInSign": 12,
- "phrase": "AN EXAMINATION OF INITIATES IN THE SANCTUARY OF AN OCCULT BROTHERHOOD."
- },
- {
- "absoluteDegree": 343,
- "sign": "Pisces",
- "degreeInSign": 13,
- "phrase": "A SWORD, USED IN MANY BATTLES, IN A MUSEUM."
- },
- {
- "absoluteDegree": 344,
- "sign": "Pisces",
- "degreeInSign": 14,
- "phrase": "A LADY WRAPPED IN FOX FUR."
- },
- {
- "absoluteDegree": 345,
- "sign": "Pisces",
- "degreeInSign": 15,
- "phrase": "AN OFFICER DRILLING HIS MEN IN A SIMULATED ATTACK."
- },
- {
- "absoluteDegree": 346,
- "sign": "Pisces",
- "degreeInSign": 16,
- "phrase": "IN A QUITE MOMENT, A CREATIVE INDIVIDUAL EXPERIENCES THE FLOW OF INSPIRATION."
- },
- {
- "absoluteDegree": 347,
- "sign": "Pisces",
- "degreeInSign": 17,
- "phrase": "AN EASTER PROMENADE."
- },
- {
- "absoluteDegree": 348,
- "sign": "Pisces",
- "degreeInSign": 18,
- "phrase": "IN A HUGE TENT A FAMOUS REVIVALIST CONDUCTS HIS MEETING WITH A SPECTACULAR PERFORMANCE."
- },
- {
- "absoluteDegree": 349,
- "sign": "Pisces",
- "degreeInSign": 19,
- "phrase": "A MASTER INSTRUCTING HIS DISCIPLE."
- },
- {
- "absoluteDegree": 350,
- "sign": "Pisces",
- "degreeInSign": 20,
- "phrase": "A TABLE SET FOR AN EVENING MEAL."
- },
- {
- "absoluteDegree": 351,
- "sign": "Pisces",
- "degreeInSign": 21,
- "phrase": "A LITTLE WHITE LAMB, A CHILD AND A CHINESE SERVANT."
- },
- {
- "absoluteDegree": 352,
- "sign": "Pisces",
- "degreeInSign": 22,
- "phrase": "A PROPHET BRINGING DOWN THE NEW LAW FROM MOUNT SINAI."
- },
- {
- "absoluteDegree": 353,
- "sign": "Pisces",
- "degreeInSign": 23,
- "phrase": "A 'MATERIALIZING MEDIUM' GIVING A SEANCE."
- },
- {
- "absoluteDegree": 354,
- "sign": "Pisces",
- "degreeInSign": 24,
- "phrase": "AN INHABITED ISLAND."
- },
- {
- "absoluteDegree": 355,
- "sign": "Pisces",
- "degreeInSign": 25,
- "phrase": "THE PURGING OF THE PRIESTHOOD."
- },
- {
- "absoluteDegree": 356,
- "sign": "Pisces",
- "degreeInSign": 26,
- "phrase": "A NEW MOON REVEALS THAT IT'S TIME FOR PEOPLE TO GO AHEAD WITH THEIR DIFFERENT PROJECTS."
- },
- {
- "absoluteDegree": 357,
- "sign": "Pisces",
- "degreeInSign": 27,
- "phrase": "A HARVEST MOON ILLUMINATES THE SKY."
- },
- {
- "absoluteDegree": 358,
- "sign": "Pisces",
- "degreeInSign": 28,
- "phrase": "A FERTILE GARDEN UNDER THE FULL MOON."
- },
- {
- "absoluteDegree": 359,
- "sign": "Pisces",
- "degreeInSign": 29,
- "phrase": "LIGHT BREAKING INTO MANY COLORS AS IT PASSES THROUGH A PRISM."
- },
- {
- "absoluteDegree": 360,
- "sign": "Pisces",
- "degreeInSign": 30,
- "phrase": "A MAJESTIC ROCK FORMATION RESEMBLING A FACE IS IDEALIZED BY A BOY WHO TAKES IT AS HIS IDEAL OF GREATNESS, AND AS HE GROWS UP, BEGINS TO LOOK LIKE IT. (adsbygoogle = window.adsbygoogle || []).push({}); Search in this site Astrology Forums Enter the forums! (adsbygoogle = window.adsbygoogle || []).push({}); Affordable reports from AstrologyWeekly: Natal Chart Report Get a thorough natal chart analysis, the key to discovering and understanding your birth potential Astrology Compatibility Report Understand your relationship and its potential, by ordering this synastry report. Forecast Report for 1 year Discover the main astrological trends in your life over the next year (transits and progressions). Forecast Report day by day Learn about the daily astrological weather triggering your daily life events and states of mind. Relocation Report Understand the astrological potential of moving to different geographical places for personal or business success. --> (adsbygoogle = window.adsbygoogle || []).push({}); Articles Astrology articles Selected articles Article archives Astrology news Interviews Weekly newsletter Horary Astrology Horary astrology William Lilly Special horary More horary Astrology Data Celebrity birthdates Celebrity charts Countries' charts Data archive Online ephemeris Void of Course Moon More information Meditation program Meditation music Astrology Humour Miscellaneous Online Tools Chart Generator World Atlas Sabian Symbols Triple transits Chakra system Sabian Oracle Moon phases Declinations Convertor Zodiac Signs Sun signs Zodiac pictures Zodiacal music Zodiac faces Get creative! Learn Astrology Basic interpretation Astrology glyphs Astrology dictionary Astrology books Astrological Techniques Understanding planets Live Chat Resources Links Planets Now Sun in Pisces Moon in Gemini Mercury in Pisces Venus in Pisces Mars in Aquarius Jupiter in Cancer Saturn in Aries Uranus in Taurus Neptune in Aries Pluto in Aquarius Next aspects of the Moon in Gemini Moon trine Pluto Moon square Sun Moon square Venus Moon square Mercury Moon trine Mars Sabian Symbols for this moment For the Sun: A parade of army officers in full dress. For the Moon: Santa clause filling stockings furtively. Current Moon phase Waxing Moon - First quarter Mansion of the Moon 5th lunar mansion Site map | Copyright | Disclaimer | Advertise | Contact Back to top var vglnk = { api_url: '//api.viglink.com/api', key: '195db594191c407b070c39901b9edd6a' }; (function(d, t) { var s = d.createElement(t); s.type = 'text/javascript'; s.async = true; s.src = ('https:' == document.location.protocol ? vglnk.api_url : '//cdn.viglink.com/api') + '/vglnk.js'; var r = d.getElementsByTagName(t)[0]; r.parentNode.insertBefore(s, r); }(document, 'script')); var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-3679982-21']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); (function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML=\"window.__CF$cv$params={r:'9d2c94134956ef1c',t:'MTc3MTkxMTEwNA=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);\";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();"
- }
- ]
-}
diff --git a/data/signs.json b/data/signs.json
deleted file mode 100644
index 6920da3..0000000
--- a/data/signs.json
+++ /dev/null
@@ -1,164 +0,0 @@
-{
- "meta": {
- "source": "https://github.com/gadicc/magick.ly/blob/master/data/astrology/zodiac.json5",
- "notes": "Sign timing/ordering/elements/modality are adapted from magick.ly; tarot major arcana correspondences are organized here to avoid UI hardcoding."
- },
- "signs": [
- {
- "id": "aries",
- "order": 1,
- "name": "Aries",
- "symbol": "♈︎",
- "start": "03-21",
- "end": "04-19",
- "element": "fire",
- "modality": "cardinal",
- "sourceQuadruplicity": "cardinal",
- "rulingPlanetId": "mars",
- "tarot": { "majorArcana": "The Emperor", "number": 4 }
- },
- {
- "id": "taurus",
- "order": 2,
- "name": "Taurus",
- "symbol": "♉︎",
- "start": "04-20",
- "end": "05-20",
- "element": "earth",
- "modality": "fixed",
- "sourceQuadruplicity": "kerubic",
- "rulingPlanetId": "venus",
- "tarot": { "majorArcana": "The Hierophant", "number": 5 }
- },
- {
- "id": "gemini",
- "order": 3,
- "name": "Gemini",
- "symbol": "♊︎",
- "start": "05-21",
- "end": "06-20",
- "element": "air",
- "modality": "mutable",
- "sourceQuadruplicity": "mutable",
- "rulingPlanetId": "mercury",
- "tarot": { "majorArcana": "The Lovers", "number": 6 }
- },
- {
- "id": "cancer",
- "order": 4,
- "name": "Cancer",
- "symbol": "♋︎",
- "start": "06-21",
- "end": "07-22",
- "element": "water",
- "modality": "cardinal",
- "sourceQuadruplicity": "cardinal",
- "rulingPlanetId": "sol",
- "tarot": { "majorArcana": "The Chariot", "number": 7 }
- },
- {
- "id": "leo",
- "order": 5,
- "name": "Leo",
- "symbol": "♌︎",
- "start": "07-23",
- "end": "08-22",
- "element": "fire",
- "modality": "fixed",
- "sourceQuadruplicity": "kerubic",
- "rulingPlanetId": "sol",
- "tarot": { "majorArcana": "Strength", "number": 8 }
- },
- {
- "id": "virgo",
- "order": 6,
- "name": "Virgo",
- "symbol": "♍︎",
- "start": "08-23",
- "end": "09-22",
- "element": "earth",
- "modality": "mutable",
- "sourceQuadruplicity": "mutable",
- "rulingPlanetId": "mercury",
- "tarot": { "majorArcana": "The Hermit", "number": 9 }
- },
- {
- "id": "libra",
- "order": 7,
- "name": "Libra",
- "symbol": "♎︎",
- "start": "09-23",
- "end": "10-22",
- "element": "air",
- "modality": "cardinal",
- "sourceQuadruplicity": "cardinal",
- "rulingPlanetId": "venus",
- "tarot": { "majorArcana": "Justice", "number": 11 }
- },
- {
- "id": "scorpio",
- "order": 8,
- "name": "Scorpio",
- "symbol": "♏︎",
- "start": "10-23",
- "end": "11-21",
- "element": "water",
- "modality": "fixed",
- "sourceQuadruplicity": "kerubic",
- "rulingPlanetId": "jupiter",
- "tarot": { "majorArcana": "Death", "number": 13 }
- },
- {
- "id": "sagittarius",
- "order": 9,
- "name": "Sagittarius",
- "symbol": "♐︎",
- "start": "11-22",
- "end": "12-21",
- "element": "fire",
- "modality": "mutable",
- "sourceQuadruplicity": "mutable",
- "rulingPlanetId": "jupiter",
- "tarot": { "majorArcana": "Temperance", "number": 14 }
- },
- {
- "id": "capricorn",
- "order": 10,
- "name": "Capricorn",
- "symbol": "♑︎",
- "start": "12-22",
- "end": "01-19",
- "element": "earth",
- "modality": "cardinal",
- "sourceQuadruplicity": "cardinal",
- "rulingPlanetId": "saturn",
- "tarot": { "majorArcana": "The Devil", "number": 15 }
- },
- {
- "id": "aquarius",
- "order": 11,
- "name": "Aquarius",
- "symbol": "♒︎",
- "start": "01-20",
- "end": "02-18",
- "element": "air",
- "modality": "fixed",
- "sourceQuadruplicity": "kerubic",
- "rulingPlanetId": "saturn",
- "tarot": { "majorArcana": "The Star", "number": 17 }
- },
- {
- "id": "pisces",
- "order": 12,
- "name": "Pisces",
- "symbol": "♓︎",
- "start": "02-19",
- "end": "03-20",
- "element": "water",
- "modality": "mutable",
- "sourceQuadruplicity": "mutable",
- "rulingPlanetId": "jupiter",
- "tarot": { "majorArcana": "The Moon", "number": 18 }
- }
- ]
-}
diff --git a/data/tarot-database.json b/data/tarot-database.json
deleted file mode 100644
index cda7450..0000000
--- a/data/tarot-database.json
+++ /dev/null
@@ -1,756 +0,0 @@
-{
- "majorCards": [
- {
- "number": 0,
- "name": "The Fool",
- "summary": "Open-hearted beginnings, leap of faith, and the sacred unknown.",
- "upright": "Fresh starts, trust in the path, and inspired spontaneity.",
- "reversed": "Recklessness, fear of risk, or resistance to a needed new beginning.",
- "keywords": [
- "beginnings",
- "faith",
- "innocence",
- "freedom",
- "journey"
- ],
- "relations": [
- "Element: Air",
- "Hebrew Letter: Aleph"
- ]
- },
- {
- "number": 1,
- "name": "The Magus",
- "summary": "Focused will and conscious manifestation through aligned tools.",
- "upright": "Skill, initiative, concentration, and transforming intent into action.",
- "reversed": "Scattered power, manipulation, or blocked self-belief.",
- "keywords": [
- "will",
- "manifestation",
- "focus",
- "skill",
- "agency"
- ],
- "relations": [
- "Planet: Mercury",
- "Hebrew Letter: Beth"
- ]
- },
- {
- "number": 2,
- "name": "The High Priestess",
- "summary": "Inner knowing, sacred silence, and intuitive perception.",
- "upright": "Intuition, subtle insight, patience, and hidden wisdom.",
- "reversed": "Disconnection from inner voice or confusion around truth.",
- "keywords": [
- "intuition",
- "mystery",
- "stillness",
- "inner-voice",
- "receptivity"
- ],
- "relations": [
- "Planet: Luna",
- "Hebrew Letter: Gimel"
- ]
- },
- {
- "number": 3,
- "name": "The Empress",
- "summary": "Creative abundance, nurture, and embodied growth.",
- "upright": "Fertility, care, beauty, comfort, and creative flourishing.",
- "reversed": "Creative drought, overgiving, or neglecting self-nourishment.",
- "keywords": [
- "abundance",
- "creation",
- "nurture",
- "beauty",
- "growth"
- ],
- "relations": [
- "Planet: Venus",
- "Hebrew Letter: Daleth"
- ]
- },
- {
- "number": 4,
- "name": "The Emperor",
- "summary": "Structure, authority, and stable leadership.",
- "upright": "Order, discipline, protection, and strategic direction.",
- "reversed": "Rigidity, domination, or weak boundaries.",
- "keywords": [
- "structure",
- "authority",
- "stability",
- "leadership",
- "boundaries"
- ],
- "relations": [
- "Zodiac: Aries",
- "Hebrew Letter: He"
- ]
- },
- {
- "number": 5,
- "name": "The Hierophant",
- "summary": "Tradition, spiritual instruction, and shared values.",
- "upright": "Learning from lineage, ritual, ethics, and mentorship.",
- "reversed": "Dogma, rebellion without grounding, or spiritual stagnation.",
- "keywords": [
- "tradition",
- "teaching",
- "ritual",
- "ethics",
- "lineage"
- ],
- "relations": [
- "Zodiac: Taurus",
- "Hebrew Letter: Vav"
- ]
- },
- {
- "number": 6,
- "name": "The Lovers",
- "summary": "Union, alignment, and value-centered choices.",
- "upright": "Harmony, connection, and conscious commitment.",
- "reversed": "Misalignment, indecision, or disconnection in relationship.",
- "keywords": [
- "union",
- "choice",
- "alignment",
- "connection",
- "values"
- ],
- "relations": [
- "Zodiac: Gemini",
- "Hebrew Letter: Zayin"
- ]
- },
- {
- "number": 7,
- "name": "The Chariot",
- "summary": "Directed momentum and mastery through discipline.",
- "upright": "Determination, movement, and victory through control.",
- "reversed": "Loss of direction, conflict of will, or stalled progress.",
- "keywords": [
- "drive",
- "control",
- "momentum",
- "victory",
- "direction"
- ],
- "relations": [
- "Zodiac: Cancer",
- "Hebrew Letter: Cheth"
- ]
- },
- {
- "number": 8,
- "name": "Lust",
- "summary": "Courageous life-force, passionate integrity, and heart-led power.",
- "upright": "Vitality, confidence, and wholehearted creative expression.",
- "reversed": "Self-doubt, depletion, or misdirected desire.",
- "keywords": [
- "vitality",
- "passion",
- "courage",
- "magnetism",
- "heart-power"
- ],
- "relations": [
- "Zodiac: Leo",
- "Hebrew Letter: Teth"
- ]
- },
- {
- "number": 9,
- "name": "The Hermit",
- "summary": "Inner pilgrimage, discernment, and sacred solitude.",
- "upright": "Reflection, guidance, and deepening wisdom.",
- "reversed": "Isolation, avoidance, or overanalysis.",
- "keywords": [
- "solitude",
- "wisdom",
- "search",
- "reflection",
- "discernment"
- ],
- "relations": [
- "Zodiac: Virgo",
- "Hebrew Letter: Yod"
- ]
- },
- {
- "number": 10,
- "name": "Fortune",
- "summary": "Cycles, timing, and turning points guided by greater rhythms.",
- "upright": "Opportunity, momentum, and fated change.",
- "reversed": "Resistance to cycles, delay, or repeating old patterns.",
- "keywords": [
- "cycles",
- "timing",
- "change",
- "destiny",
- "turning-point"
- ],
- "relations": [
- "Planet: Jupiter",
- "Hebrew Letter: Kaph"
- ]
- },
- {
- "number": 11,
- "name": "Justice",
- "summary": "Balance, accountability, and clear consequence.",
- "upright": "Fairness, truth, and ethical alignment.",
- "reversed": "Bias, denial, or avoidance of responsibility.",
- "keywords": [
- "balance",
- "truth",
- "accountability",
- "law",
- "clarity"
- ],
- "relations": [
- "Zodiac: Libra",
- "Hebrew Letter: Lamed"
- ]
- },
- {
- "number": 12,
- "name": "The Hanged Man",
- "summary": "Sacred pause, surrender, and transformed perspective.",
- "upright": "Release, contemplation, and spiritual reframing.",
- "reversed": "Stagnation, martyrdom, or refusing to let go.",
- "keywords": [
- "surrender",
- "pause",
- "perspective",
- "suspension",
- "release"
- ],
- "relations": [
- "Element: Water",
- "Hebrew Letter: Mem"
- ]
- },
- {
- "number": 13,
- "name": "Death",
- "summary": "Endings that clear space for rebirth and renewal.",
- "upright": "Transformation, completion, and deep release.",
- "reversed": "Clinging, fear of change, or prolonged transition.",
- "keywords": [
- "transformation",
- "ending",
- "renewal",
- "release",
- "rebirth"
- ],
- "relations": [
- "Zodiac: Scorpio",
- "Hebrew Letter: Nun"
- ]
- },
- {
- "number": 14,
- "name": "Art",
- "summary": "Alchemy, integration, and harmonizing opposites.",
- "upright": "Balance through blending, refinement, and patience.",
- "reversed": "Imbalance, excess, or fragmented energies.",
- "keywords": [
- "alchemy",
- "integration",
- "balance",
- "blending",
- "refinement"
- ],
- "relations": [
- "Zodiac: Sagittarius",
- "Hebrew Letter: Samekh"
- ]
- },
- {
- "number": 15,
- "name": "The Devil",
- "summary": "Attachment, shadow desire, and material entanglement.",
- "upright": "Confronting bondage, ambition, and raw instinct.",
- "reversed": "Liberation, breaking chains, or denial of shadow.",
- "keywords": [
- "attachment",
- "shadow",
- "instinct",
- "temptation",
- "bondage"
- ],
- "relations": [
- "Zodiac: Capricorn",
- "Hebrew Letter: Ayin"
- ]
- },
- {
- "number": 16,
- "name": "The Tower",
- "summary": "Sudden revelation that dismantles false structures.",
- "upright": "Shock, breakthrough, and necessary collapse.",
- "reversed": "Delayed upheaval, denial, or internal crisis.",
- "keywords": [
- "upheaval",
- "revelation",
- "breakthrough",
- "collapse",
- "truth"
- ],
- "relations": [
- "Planet: Mars",
- "Hebrew Letter: Pe"
- ]
- },
- {
- "number": 17,
- "name": "The Star",
- "summary": "Healing hope, guidance, and spiritual renewal.",
- "upright": "Inspiration, serenity, and trust in the future.",
- "reversed": "Discouragement, doubt, or loss of faith.",
- "keywords": [
- "hope",
- "healing",
- "guidance",
- "renewal",
- "faith"
- ],
- "relations": [
- "Zodiac: Aquarius",
- "Hebrew Letter: Tzaddi"
- ]
- },
- {
- "number": 18,
- "name": "The Moon",
- "summary": "Dream, uncertainty, and passage through the subconscious.",
- "upright": "Intuition, mystery, and emotional depth.",
- "reversed": "Confusion clearing, projection, or fear illusions.",
- "keywords": [
- "dream",
- "mystery",
- "intuition",
- "subconscious",
- "illusion"
- ],
- "relations": [
- "Zodiac: Pisces",
- "Hebrew Letter: Qoph"
- ]
- },
- {
- "number": 19,
- "name": "The Sun",
- "summary": "Radiance, confidence, and vital life affirmation.",
- "upright": "Joy, clarity, success, and openness.",
- "reversed": "Temporary clouding, ego glare, or delayed confidence.",
- "keywords": [
- "joy",
- "clarity",
- "vitality",
- "success",
- "radiance"
- ],
- "relations": [
- "Planet: Sol",
- "Hebrew Letter: Resh"
- ]
- },
- {
- "number": 20,
- "name": "Aeon",
- "summary": "Awakening call, reckoning, and soul-level renewal.",
- "upright": "Judgment, liberation, and answering purpose.",
- "reversed": "Self-judgment, hesitation, or resistance to calling.",
- "keywords": [
- "awakening",
- "reckoning",
- "calling",
- "renewal",
- "release"
- ],
- "relations": [
- "Element: Fire",
- "Hebrew Letter: Shin"
- ]
- },
- {
- "number": 21,
- "name": "Universe",
- "summary": "Completion, integration, and embodied wholeness.",
- "upright": "Fulfillment, mastery, and successful closure.",
- "reversed": "Incomplete cycle, loose ends, or delayed completion.",
- "keywords": [
- "completion",
- "wholeness",
- "integration",
- "mastery",
- "closure"
- ],
- "relations": [
- "Planet: Saturn",
- "Hebrew Letter: Tav"
- ]
- }
- ],
- "suits": [
- "Cups",
- "Wands",
- "Swords",
- "Disks"
- ],
- "numberRanks": [
- "Ace",
- "Two",
- "Three",
- "Four",
- "Five",
- "Six",
- "Seven",
- "Eight",
- "Nine",
- "Ten"
- ],
- "courtRanks": [
- "Knight",
- "Queen",
- "Prince",
- "Princess"
- ],
- "suitInfo": {
- "cups": {
- "element": "Water",
- "domain": "emotion, intuition, relationship",
- "keywords": [
- "emotion",
- "intuition",
- "connection"
- ]
- },
- "wands": {
- "element": "Fire",
- "domain": "will, creativity, drive",
- "keywords": [
- "will",
- "drive",
- "inspiration"
- ]
- },
- "swords": {
- "element": "Air",
- "domain": "mind, truth, communication",
- "keywords": [
- "mind",
- "truth",
- "clarity"
- ]
- },
- "disks": {
- "element": "Earth",
- "domain": "body, craft, material life",
- "keywords": [
- "resources",
- "craft",
- "stability"
- ]
- }
- },
- "rankInfo": {
- "ace": {
- "number": 1,
- "upright": "Seed-force, pure potential, and concentrated essence.",
- "reversed": "Blocked potential, delay, or difficulty beginning.",
- "keywords": [
- "seed",
- "potential",
- "spark"
- ]
- },
- "two": {
- "number": 2,
- "upright": "Polarity seeking balance, exchange, and response.",
- "reversed": "Imbalance, friction, or uncertain choices.",
- "keywords": [
- "duality",
- "balance",
- "exchange"
- ]
- },
- "three": {
- "number": 3,
- "upright": "Initial growth, expansion, and expression.",
- "reversed": "Scattered growth or stalled development.",
- "keywords": [
- "growth",
- "expansion",
- "expression"
- ]
- },
- "four": {
- "number": 4,
- "upright": "Structure, boundaries, and stabilizing form.",
- "reversed": "Rigidity, inertia, or unstable foundations.",
- "keywords": [
- "structure",
- "stability",
- "foundation"
- ]
- },
- "five": {
- "number": 5,
- "upright": "Challenge, disruption, and catalytic conflict.",
- "reversed": "Lingering tension or fear of needed change.",
- "keywords": [
- "challenge",
- "conflict",
- "change"
- ]
- },
- "six": {
- "number": 6,
- "upright": "Rebalancing, harmony, and restorative flow.",
- "reversed": "Partial recovery or unresolved imbalance.",
- "keywords": [
- "harmony",
- "repair",
- "flow"
- ]
- },
- "seven": {
- "number": 7,
- "upright": "Testing, strategy, and spiritual/mental refinement.",
- "reversed": "Doubt, overdefense, or poor strategy.",
- "keywords": [
- "test",
- "strategy",
- "refinement"
- ]
- },
- "eight": {
- "number": 8,
- "upright": "Adjustment, movement, and disciplined power.",
- "reversed": "Restriction, frustration, or scattered effort.",
- "keywords": [
- "movement",
- "discipline",
- "adjustment"
- ]
- },
- "nine": {
- "number": 9,
- "upright": "Intensity, culmination, and mature force.",
- "reversed": "Excess, overload, or unresolved pressure.",
- "keywords": [
- "culmination",
- "intensity",
- "maturity"
- ]
- },
- "ten": {
- "number": 10,
- "upright": "Completion, overflow, and transition into a new cycle.",
- "reversed": "Overextension, depletion, or difficulty releasing.",
- "keywords": [
- "completion",
- "threshold",
- "transition"
- ]
- }
- },
- "courtInfo": {
- "knight": {
- "role": "active catalyst and questing force",
- "elementalFace": "Fire of",
- "upright": "Bold pursuit, direct action, and forward momentum.",
- "reversed": "Impulsiveness, burnout, or unfocused drive.",
- "keywords": [
- "action",
- "drive",
- "initiative"
- ]
- },
- "queen": {
- "role": "magnetic vessel and emotional intelligence",
- "elementalFace": "Water of",
- "upright": "Receptive mastery, mature feeling, and embodied wisdom.",
- "reversed": "Withholding, moodiness, or passive control.",
- "keywords": [
- "receptivity",
- "maturity",
- "depth"
- ]
- },
- "prince": {
- "role": "strategic mediator and organizing mind",
- "elementalFace": "Air of",
- "upright": "Insight, communication, and adaptive coordination.",
- "reversed": "Overthinking, detachment, or mixed signals.",
- "keywords": [
- "strategy",
- "communication",
- "adaptability"
- ]
- },
- "princess": {
- "role": "manifesting ground and practical seed-force",
- "elementalFace": "Earth of",
- "upright": "Practical growth, devotion, and tangible follow-through.",
- "reversed": "Stagnation, timidity, or blocked growth.",
- "keywords": [
- "manifestation",
- "grounding",
- "devotion"
- ]
- }
- },
- "courtDecanWindows": {
- "Knight of Wands": [
- "scorpio-3",
- "sagittarius-1",
- "sagittarius-2"
- ],
- "Queen of Disks": [
- "sagittarius-3",
- "capricorn-1",
- "capricorn-2"
- ],
- "Prince of Swords": [
- "capricorn-3",
- "aquarius-1",
- "aquarius-2"
- ],
- "Knight of Cups": [
- "aquarius-3",
- "pisces-1",
- "pisces-2"
- ],
- "Queen of Wands": [
- "pisces-3",
- "aries-1",
- "aries-2"
- ],
- "Prince of Disks": [
- "aries-3",
- "taurus-1",
- "taurus-2"
- ],
- "Knight of Swords": [
- "taurus-3",
- "gemini-1",
- "gemini-2"
- ],
- "Queen of Cups": [
- "gemini-3",
- "cancer-1",
- "cancer-2"
- ],
- "Prince of Wands": [
- "cancer-3",
- "leo-1",
- "leo-2"
- ],
- "Knight of Disks": [
- "leo-3",
- "virgo-1",
- "virgo-2"
- ],
- "Queen of Swords": [
- "virgo-3",
- "libra-1",
- "libra-2"
- ],
- "Prince of Cups": [
- "libra-3",
- "scorpio-1",
- "scorpio-2"
- ]
- },
- "meanings": {
- "majorByTrumpNumber": {
- "0": "Beginning of the Great Work, innocence; a fool for love; divine madness. Reason is transcended. Take the leap. Gain or loss through foolish actions.",
- "1": "Communication; Conscious Will; the process of continuous creation; ambiguity; deception. Things may not be as they appear. Concentration; meditation; mind used to direct the Will. Manipulation; crafty maneuverings.",
- "2": "Symbol of highest initiation; link between the Archetypal and Formative Worlds. An initiatrix. Wooing by enchantment. Possibility. The Idea behind the Form. Fluctuation. Time may not be right for a decision concerning mundane matters.",
- "3": "The Holy Grail. Love unites the Will. Love; beauty; friendship; success; passive balance. The feminine point of view. The door is open. Disregard the details and concentrate on the big picture.",
- "4": "Creative wisdom radiating upon the organized man and woman. Domination after conquest; quarrelsomeness; paternal love; ambition. Thought ruled by creative, masculine, fiery energy. Stubbornness; war; authority; energy in its most temporal form. Swift impermanent action over confidence.",
- "5": "The Holy Guardian Angel. The uniting of that which is above with that which is below. Love is indicated, but the nature of that love is not yet to be revealed. Inspiration; teaching; organization; discipline; strength; endurance; toil; help from superiors.",
- "6": "Intuition. Be open to your own inner voice. A well-intended, arranged marriage. An artificial union; analysis followed by synthesis; indecision; instability; superficiality.",
- "7": "Light in the darkness. The burden you carry may be the Holy Grail. Faithfulness; hope; obedience; a protective relationship; firm, even violent adherence to dogma or tradition. Glory; riches; enlightened civilization; victory; triumph; chain of command.",
- "8": "Equilibrium; karmic law; the dance of life; all possibilities. The woman satisfied. Balance; weigh each thought against its opposite. Lawsuits; treaties. Pause and look before you leap.",
- "9": "Divine seed of all things. By silence comes inspiration and wisdom. Wandering alone; temporary solitude; creative contemplation; a virgin. Retirement from involvement in current events.",
- "10": "Continual change. In the midst of revolving phenomena, reach joyously the motionless center. Carefree love; wanton pleasure; amusement; fun; change of fortune, usually good.",
- "11": "Understanding; the Will of the New Aeon; passion; sense smitten with ecstasy. Let love devour all. Energy independent of reason. Strength; courage; utilization of magical power.",
- "12": "Redemption, sacrifice, annihilation in the beloved; martyrdom; loss; torment; suspension; death; suffering.",
- "13": "End of a cycle; transformation; raw sexuality. Sex is death. Stress becomes intolerable. Any change is welcome. Time; age; unexpected change; death.",
- "14": "Transmutation through union of opposites. A perfect marriage exalts and transforms each partner. The scientific method. Success follows complex maneuvers.",
- "15": "“Thou hast no right but to do thy will.” Obsession; temptation; ecstasy found in every phenomenon; creative action, yet sublimely careless of result; unscrupulous ambition; strength.",
- "16": "Escape from the prison of organized life; renunciation of love; quarreling. Plans are destroyed. War; danger; sudden death.",
- "17": "Clairvoyance; visions; dreams; hope; love; yearning; realization of inexhaustible possibilities; dreaminess; unexpected help; renewal.",
- "18": "The Dark Night of the Soul; deception; falsehood; illusion; madness; the threshold of significant change.",
- "19": "Lord of the New Aeon. Spiritual emancipation. Pleasure; shamelessness; vanity; frankness. Freedom brings sanity. Glory; riches; enlightened civilization.",
- "20": "Let every act be an act of Worship; let every act be an act of Love. Final decision; judgement. Learn from the past. Prepare for the future.",
- "21": "Completion of the Great Work; patience; perseverance; stubbornness; serious meditation. Work accomplished."
- },
- "byCardName": {
- "ace of wands": "Primordial energy as yet unmanifest. Seed of the Will. Masculine archetype. Natural force.",
- "knight of wands": "He is active, generous, fierce, sudden, impetuous. If ill-dignified, he is evil-minded, cruel, bigoted, brutal.",
- "queen of wands": "Adaptability, steady force applied to an object, steady rule, great attractive power, power of command, yet liked. Kind and generous when not opposed. If ill-dignified, obstinate, revengeful, domineering, tyrannical, and apt to turn against another without a cause.",
- "prince of wands": "Swift, strong, hasty; rather violent, yet just and generous; noble and scorning meanness. If ill-dignified, cruel, intolerant, prejudiced, and ill-natured.",
- "princess of wands": "Brilliance, courage, beauty, force, sudden in anger or love, desire of power, enthusiasm, revenge. If ill dignified, she is superficial, theatrical, cruel, unstable, domineering.",
- "two of wands": "Dominion. First manifestation of Fire. Ideal will, independent and creative. Control over circumstances.",
- "three of wands": "Pride, arrogance, self-assertion. Established force, strength, realization of hope. Completion of labor. Success after struggle. Pride, nobility, wealth, power, conceit. Rude self-assumption and insolence. Generosity, obstinacy, etc.",
- "four of wands": "Settlement, arrangement, completion. Perfection or completion of a thing built up with trouble and labor. Rest after labor, subtlety, cleverness, beauty, mirth, success in completion. Reasoning faculty, conclusions drawnfrom previous knowledge. Unreadiness, unreliable and unsteady through overanxiety and hurriedness of action. Graceful in manner, at times insincere, etc.",
- "five of wands": "Quarreling and fighting. Violent strife and boldness, rashness, cruelty, violence, lust, desire, prodigality and generosity, depending on whether the card is well- or ill-dignified.",
- "six of wands": "Gain. Victory after strife. Love; pleasure gained by labor; carefulness, sociability and avoiding of strife, yet victory therein; also insolence and pride of riches and success, etc. The whole is dependent on the dignity.",
- "seven of wands": "Opposition, yet courage. Possible victory, depending on the energy and courage exercised; valor; opposition, obstacles and difficulties, yet courage to meet them; quarreling, ignorance, pretense, wrangling, and threatening; also victory in small and unimportant things and influence upon subordinates.",
- "eight of wands": "Hasty communications and messages; swiftness. Too much force applied too suddenly. Very rapid rush, but quickly passed and expended. Violent, but not lasting. Swiftness, rapidity, courage, boldness, confidence, freedom, warfare, violence; love of open air, field sports, gardens, and meadows. Generous, subtle, eloquent, yet somewhat untrustworthy; rapacious, insolent, oppressive. Theft and robbery. According to dignity.",
- "nine of wands": "Strength, power, health, recovery from sickness. Tremendous and steady force that cannot be shaken. Herculean strength, yet sometimes scientifically applied. Great success, but with strife and energy. Victory, preceded by apprehension and fear. Health good, and recovery not in doubt. Generous, questioning and curious; fond of external appearances; intractable, obstinate.",
- "ten of wands": "Cruelty, malice, revenge, injustice. Cruel and overbearing force and energy, but applied only to material and selfish ends. Sometimes shows failure in a matter and the opposition too strong to be controlled, arising from the person’s too great selfishness at the beginning. Ill will, levity, lying, malice, slander, envy, obstinacy; swiftness in evil and deceit, if ill-dignified. Also generosity, disinterestedness, and self-sacrifice, when well dignified. CUPS",
- "ace of cups": "It symbolizes fertility—productiveness, beauty, pleasure, happiness, etc.",
- "knight of cups": "Graceful, poetic, Venusian, indolent, but enthusiastic if roused. Ill-dignified, he is sensual, idle, and untruthful.",
- "queen of cups": "She is imaginative, poetic, kind, yet not willing to take much trouble for another. Coquettish, good-natured, and underneath a dreamy appearance. Imagination stronger than feeling. Very much affected by other influences, and therefore more dependent upon dignity than most symbols.",
- "prince of cups": "He is subtle, violent, crafty and artistic; a fierce nature with calm exterior. Powerful for good or evil but more attracted by the evil if allied with apparent Power or Wisdom. If ill-dignified, he is intensely evil and merciless.",
- "princess of cups": "Sweetness, poetry, gentleness, and kindness. Imaginative, dreamy, at times indolent, yet courageous if roused. When ill-dignified, she is selfish and luxurious.",
- "two of cups": "Marriage, love, pleasure. Harmony of masculine and feminine united. Harmony, pleasure, mirth, subtlety; but if",
- "three of cups": "Plenty, hospitality, eating and drinking, pleasure, dancing, new clothes, merriment. Abundance, plenty, success, pleasure, sensuality, passive success, good luck and fortune; love, gladness, kindness, liberality.",
- "four of cups": "Receiving pleasure or kindness from others, but some discomfort therewith. Success or pleasure approaching their end. A stationary period in happiness, which may, or may not, continue. It does not mean love and marriage so much as the previous symbol. It is too passive a symbol to represent perfectly completehappiness. Swiftness, hunting and pursuing. Acquisition by contention; injustice sometimes; some drawbacks to pleasure implied.",
- "five of cups": "Disappointment in love, marriage broken off, unkindness of a friend; loss of friendship. Death, or end of pleasure; disappointment, sorrow, and loss in those things from which pleasure is expected. Sadness, treachery, deceit; ill will, detraction; charity and kindness ill-requited; all kinds of anxieties and troubles from unsuspected and unexpected sources.",
- "six of cups": "Beginning of wish, happiness, success, or enjoyment. Commencement of steady increase, gain and pleasure; but commencement only. Also affront, detection, knowledge, and in some instances contention and strife arising from unwarranted self-assertion and vanity. Sometimes thankless and presumptuous; sometimes amiable and patient. According to dignity as usual.",
- "seven of cups": "Lying, promises unfulfilled; illusion, deception, error; slight success at outset, not retained. Possible victory, but neutralized by the supineness of the person: illusionary success, deception in the moment of apparent victory. Lying, error, promises unfulfilled. Drunkenness, wrath, vanity. Lust, fornication, violence against women, selfish dissipation, deception in love and friendship. Often success gained, but not followed up. Modified as usual by dignity.",
- "eight of cups": "Success abandoned; decline of interest. Temporary success, but without further results. Thing thrown aside as soon as gained. Not lasting, even in the matter in hand. Indolence in success. Journeying from place to place. Misery and repining without cause. Seeking after riches. Instability.",
- "nine of cups": "Complete success, pleasure and happiness, wishes fulfilled. Complete and perfect realization of pleasure and happiness, almost perfect; self-praise, vanity, conceit, much talking of self, yet kind and lovable, and may be self-denying therewith. High-minded, not easily satisfied with small and limited ideas. Apt to be maligned through too much self-assumption. A good and generous, but sometimes foolish nature.",
- "ten of cups": "Matter settled; complete good fortune. Permanent and lasting success and happiness, because inspired from above. Not so sensual as “Lord of Material Happiness,” yet almost more truly happy. Pleasure, dissipation,debauchery, quietness, peacemaking. Kindness, pity, generosity, wantonness, waste, etc., according to dignity.",
- "ace of swords": "It symbolizes “invoked,” as contrasted with natural force: for it is the Invocation of the Sword. Raised upward, it invokes the divine crown of spiritual brightness, but reversed it is the invocation of demonic force and becomes a fearfully evil symbol. It represents, therefore, very great power for good or evil, but invoked; and it also represents whirling force and strength through trouble. It is the affirmation of Justice upholding divine authority; and it may become the Sword of Wrath, Punishment, and Affliction.",
- "knight of swords": "He is active, clever, subtle, fierce, delicate, courageous, skillful, but inclined to domineer. Also to overvalue small things, unless well-dignified. If ill-dignified, deceitful, tyrannical, and crafty.",
- "queen of swords": "Intensely perceptive, keen observation, subtle, quick and confident; often persevering, accurate in superficial things, graceful, fond of dancing and balancing. If ill-dignified, cruel, sly, deceitful, unreliable, though with a good exterior.",
- "prince of swords": "Full of ideas and thoughts and designs, distrustful, suspicious, firm in friendship and enmity; careful, observant, slow, overcautious. Symbolizes Alpha and Omega; he slays as fast as he creates. If ill-dignified: harsh, malicious, plotting; obstinate, yet hesitating; unreliable.",
- "princess of swords": "Wisdom, strength, acuteness; subtlety in material things; grace and dexterity. If ill-dignified, she is frivolous and cunning.",
- "two of swords": "Quarrel made up, yet still some tension in relations: actions sometimes selfish, sometimes unselfish. Contradictory characters in the same nature; strength through suffering, pleasure after pain. Sacrifice and trouble, yet strength arising therefrom, symbolized by the position of the rose, as though the pain itself had brought forth beauty. Arrangement, peace restored; truce; truth and untruth; sorrow and sympathy. Aid to the weak; justice; unselfishness; also a tendency to repetition of affronts on being pardoned; injury when meaning well; given to petitions; also a want of tact and asking questions of little moment; talkative.",
- "three of swords": "Unhappiness, sorrow, and tears. Disruption, interruption, separation, quarreling; sowing of discord and strife, mischief-making, sorrow and tears; yet mirth in platonic pleasures; singing, faithfulness in promises, honesty in money transactions, selfish and dissipated, yet sometimes generous; deceitful in words and repetitions; the whole according to dignity.",
- "four of swords": "Convalescence, recovery from sickness; change for the better. Rest from sorrow, yet after and through it. Peace from and after war. Relaxation of anxiety. Quietness, rest, ease and plenty, yet after struggle. Goods of this life; abundance; modified by dignity as usual.",
- "five of swords": "Defeat, loss, malice, spite, slander, evil-speaking. Contest finished and decided against the person; failure, defeat, anxiety, trouble, poverty, avarice, grieving after gain; laborious, unresting; loss and vileness of nature; malicious, slanderous, lying, spiteful and tale-bearing. A busybody and separator of friends, hating to see peace and love between others. Cruel, yet cowardly, thankless and unreliable. Clever and quick in thought and speech. Feelings of pity easily roused, but unenduring.",
- "six of swords": "Labor, work, journey by water. Success after anxiety and trouble; self-esteem, beauty, conceit, but sometimes modesty therewith; dominance, patience, labor, etc.",
- "seven of swords": "Journey by land; in character untrustworthy. Partial success. Yielding when victory is within grasp, as if the last reserves of strength were used up. Inclination to lose when on the point of gaining through not continuing the effort. Love of abundance; fascinated by display; given to compliments, affronts, and insolences and to spy upon others. Inclined to betray confidences, not always intentionally. Rather vacillatory and unreliable.",
- "eight of swords": "Narrow, restricted, petty, a prison. Too much force applied to small things; too much attention to detail at the expense of the principal and more important points. When ill-dignified, these qualities produce malice, pettiness, and domineering characteristics. Patience in detail of study; great care in some things, counterbalanced by equal disorder in others. Impulsive; equally fond of giving or receiving money or presents; generous, clever, acute, selfish and without strong feeling of affection. Admires wisdom, yet applies it to small and unworthy objects.",
- "nine of swords": "Illness, suffering, malice, cruelty, pain. Despair, cruelty, pitilessness, malice, suffering, want, loss, misery. Burden, oppression, labor; subtlety and craft, dishonesty, lying and slander. Yet also obedience, faithfulness, patience, unselfishness, etc., according to dignity.",
- "ten of swords": "Ruin, death, defeat, disruption. Almost a worse symbol than the Nine of Swords. Undisciplined, warring force, complete disruption and failure. Ruin of all plans and projects. Disdain, insolence, and impertinence, yet mirth and jollity therewith. A marplot, loving to overthrow the happiness of others; a repeater of things; given to much unprofitable speech, and of many words. Yet clever, eloquent, etc., according to dignity.",
- "ace of disks": "It represents materiality in all senses, good and evil, and is, therefore, in a sense, illusionary. It shows material gain, labor, power, wealth, etc.",
- "knight of disks": "Unless very well-dignified he is heavy, dull, and material. Laborious, clever, and patient in material matters. If",
- "queen of disks": "She is impetuous, kind, timid, rather charming, greathearted, intelligent, melancholy, truthful, yet of many moods. If ill-dignified, she is undecided, capricious, changeable, foolish.",
- "prince of disks": "Increase of matter. Increases good or evil, solidifies; practically applies things. Steady, reliable. If ill-dignified, he is selfish, animal and material, stupid. In either case slow to anger, but furious if roused.",
- "princess of disks": "She is generous, kind, diligent, benevolent, careful, courageous, persevering, pitiful. If ill-dignified, she is wasteful and prodigal.",
- "two of disks": "Pleasant change; visit to friends. The harmony of change; alternation of gain and loss, weakness and strength; ever-changing occupation; wandering, discontented with any fixed condition of things; now elated, then melancholy; industrious, yet unreliable; fortunate through prudence of management, yet sometimes unaccountably foolish; alternatively talkative and suspicious. Kind, yet wavering and inconsistent. Fortunate in journeying. Argumentative.",
- "three of disks": "Business, paid employment, commercial transaction. Working and constructive force, building up, creation, erection; realization and increase of material things; gain in commercial transactions, rank; increase of substance, influence, cleverness in business, selfishness. Commencement of matters to be established later. Narrow and prejudiced. Keen in matters of gain; sometimes given to seeking after impossibilities.",
- "four of disks": "Gain of money or influence; a present. Assured material gain: success, rank, dominion, earthy power, completed but leading to nothing beyond. Prejudicial, covetous, suspicious, careful and orderly, but discontented. Little enterprise or originality. According to dignity as usual.",
- "five of disks": "Loss of profession; loss of money; monetary anxiety. Loss of money or position. Trouble about material things. Labor, toil, land cultivation; building, knowledge and acuteness of earthly things; poverty; carefulness, kindness; sometimes money regained after severe toil and labor. Unimaginative, harsh, stern, determined, obstinate.",
- "six of disks": "Success in material things, prosperity in business. Success and gain in material undertakings. Power, influence, rank, nobility, rule over the people. Fortunate, successful, liberal, and just. If ill-dignified, may be purse-proud, insolent from excess, or prodigal.",
- "seven of disks": "Unprofitable speculations and employments; little gain for much labor. Promises of success unfulfilled (shown, as it were, by the fact that the rosebuds do not come to anything). Loss of apparently promising fortune. Hopes deceived and crushed. Disappointment, misery, slavery, necessity, and baseness. A cultivator of land, yet a loser thereby. Sometimes it denotes slight and isolated gains with no fruits resulting therefrom, and of no further account, though seeming to promise well.",
- "eight of disks": "Skill; prudence; cunning. Overcareful in small things at the expense of great. Penny wise and pound foolish. Gain of ready money in small sums; mean, avaricious; industrious; cultivation of land; hoarding; lacking in enterprise.",
- "nine of disks": "Inheritance; much increase of goods. Complete realization of material gain, good, riches; inheritance; covetous, treasuring of goods, and sometimes theft and knavery. The whole according to dignity.",
- "ten of disks": "Riches and wealth. Completion of material gain and fortune; but nothing beyond; as it were, at the very pinnacle of success. Old age, slothfulness; great wealth, yet sometimes loss in part; heaviness; dullness of mind, yet clever and prosperous in money transactions."
- }
- }
-}
diff --git a/data/wheel-of-year.json b/data/wheel-of-year.json
deleted file mode 100644
index be3498a..0000000
--- a/data/wheel-of-year.json
+++ /dev/null
@@ -1,338 +0,0 @@
-{
- "meta": {
- "version": 1,
- "notes": "Celtic / Pagan Wheel of the Year — eight seasonal festivals (Sabbats) with astronomical and agricultural associations. Holiday records are centralized in calendar-holidays.json."
- },
- "calendar": {
- "id": "wheel-of-year",
- "label": "Wheel of the Year",
- "type": "solar-cycle",
- "script": "Latin",
- "description": "The Wheel of the Year is an annual cycle of eight seasonal festivals (Sabbats) observed in Wicca, Druidry, and many modern Pagan traditions. Four are 'cross-quarter' fire festivals tied to agricultural seasons; four are solar festivals at the solstices and equinoxes."
- },
- "months": [
- {
- "id": "samhain",
- "order": 1,
- "name": "Samhain",
- "nativeName": "Samhain",
- "pronounce": "SOW-in",
- "date": "October 31 / November 1",
- "type": "cross-quarter",
- "season": "Autumn cross-quarter",
- "element": "Earth",
- "description": "The Celtic New Year and the beginning of the dark half of the year. The boundary between the living and the dead is thinnest. Ancestors are honored; divination is practiced.",
- "associations": {
- "direction": "North / Northwest",
- "themes": [
- "death and rebirth",
- "ancestors",
- "the veil",
- "divination",
- "endings"
- ],
- "deities": [
- "The Crone",
- "Hecate",
- "The Morrigan",
- "Hades",
- "Osiris"
- ],
- "colors": [
- "black",
- "orange",
- "deep red",
- "purple"
- ],
- "herbs": [
- "mugwort",
- "wormwood",
- "dittany of Crete",
- "nightshade"
- ]
- }
- },
- {
- "id": "yule",
- "order": 2,
- "name": "Yule (Winter Solstice)",
- "nativeName": "Yule / Alban Arthan",
- "date": "~December 21",
- "type": "solar",
- "season": "Winter solstice",
- "element": "Earth",
- "description": "The longest night and the rebirth of the Sun. The Oak King defeats the Holly King to begin the light's return. Log-burning, evergreen decoration, and candlelight vigils mark this Solar festival.",
- "associations": {
- "direction": "North",
- "themes": [
- "rebirth of the sun",
- "hope",
- "inner light",
- "return of warmth",
- "solstice"
- ],
- "deities": [
- "The Oak King",
- "Sol Invictus",
- "Mithras",
- "Odin / Father Christmas"
- ],
- "colors": [
- "red",
- "green",
- "gold",
- "white"
- ],
- "herbs": [
- "holly",
- "ivy",
- "mistletoe",
- "pine",
- "frankincense"
- ]
- }
- },
- {
- "id": "imbolc",
- "order": 3,
- "name": "Imbolc",
- "nativeName": "Imbolc / Oimelc",
- "date": "February 1–2",
- "type": "cross-quarter",
- "season": "Late winter cross-quarter",
- "element": "Fire / Earth",
- "description": "The first stirrings of spring. A festival of the returning light, purification, and the goddess Brigid. Corresponds to Candlemas in Christian tradition.",
- "associations": {
- "direction": "Northeast",
- "themes": [
- "new beginnings",
- "purification",
- "inspiration",
- "hearth",
- "healing"
- ],
- "deities": [
- "Brigid / Bride",
- "St. Brigid",
- "The Maiden"
- ],
- "colors": [
- "white",
- "silver",
- "pale yellow",
- "pink"
- ],
- "herbs": [
- "snowdrop",
- "rosemary",
- "angelica",
- "basil"
- ]
- }
- },
- {
- "id": "ostara",
- "order": 4,
- "name": "Ostara (Spring Equinox)",
- "nativeName": "Ostara / Alban Eilir",
- "date": "~March 20–21",
- "type": "solar",
- "season": "Spring equinox",
- "element": "Air",
- "description": "The Spring Equinox; equal day and night, balance of light and dark. Seeds of spring are planted, hares and eggs symbolize fertility. Named for the Germanic dawn goddess Ēostre.",
- "associations": {
- "direction": "East",
- "themes": [
- "balance",
- "rebirth",
- "fertility",
- "dawn",
- "new beginnings"
- ],
- "deities": [
- "Ēostre",
- "Persephone",
- "The Maiden",
- "Green Man"
- ],
- "colors": [
- "pale green",
- "yellow",
- "lilac",
- "pastel"
- ],
- "herbs": [
- "violet",
- "jasmine",
- "daffodil",
- "lavender"
- ]
- }
- },
- {
- "id": "beltane",
- "order": 5,
- "name": "Beltane",
- "nativeName": "Beltane / Bealtainn",
- "date": "May 1",
- "type": "cross-quarter",
- "season": "Spring cross-quarter",
- "element": "Fire",
- "description": "The great Celtic fire festival celebrating the peak of spring and the beginning of summer. Union of the God and Goddess. Maypole dancing, bonfires, and the gathering of hawthorn (may) blossom.",
- "associations": {
- "direction": "Southeast",
- "themes": [
- "fertility",
- "passion",
- "union",
- "abundance",
- "sexuality",
- "vitality"
- ],
- "deities": [
- "The Green Man",
- "Flora",
- "Cernunnos",
- "Aphrodite",
- "Beltane Fire"
- ],
- "colors": [
- "red",
- "white",
- "green",
- "gold"
- ],
- "herbs": [
- "hawthorn",
- "rose",
- "rowan",
- "meadowsweet",
- "woodruff"
- ]
- }
- },
- {
- "id": "litha",
- "order": 6,
- "name": "Litha (Summer Solstice)",
- "nativeName": "Litha / Alban Hefin / Midsummer",
- "date": "~June 21",
- "type": "solar",
- "season": "Summer solstice",
- "element": "Fire",
- "description": "The longest day; the sun is at its zenith. The Holly King begins to reclaim power from the Oak King. A time of peak solar energy, magic, and celebration. Corresponds to Midsummer (Shakespeare's A Midsummer Night's Dream).",
- "associations": {
- "direction": "South",
- "themes": [
- "peak power",
- "fullness",
- "solar magic",
- "fae",
- "courage",
- "strength"
- ],
- "deities": [
- "Sol / Sun God",
- "Lugh (early)",
- "Ra",
- "Apollo"
- ],
- "colors": [
- "gold",
- "yellow",
- "orange",
- "blue"
- ],
- "herbs": [
- "St. John's Wort",
- "lavender",
- "chamomile",
- "elderflower",
- "fern seed"
- ]
- }
- },
- {
- "id": "lughnasadh",
- "order": 7,
- "name": "Lughnasadh",
- "nativeName": "Lughnasadh / Lammas",
- "date": "August 1",
- "type": "cross-quarter",
- "season": "Autumn cross-quarter (first harvest)",
- "element": "Earth / Fire",
- "description": "The first harvest festival, celebrating grain and abundance. Named for the Celtic sun god Lugh, who ordained funeral games for his foster-mother Tailtiu. The first loaf of bread is baked from the new grain.",
- "associations": {
- "direction": "West / Southwest",
- "themes": [
- "first harvest",
- "grain",
- "sacrifice",
- "abundance",
- "skill",
- "games"
- ],
- "deities": [
- "Lugh",
- "The Corn King",
- "John Barleycorn",
- "Demeter"
- ],
- "colors": [
- "gold",
- "orange",
- "brown",
- "yellow"
- ],
- "herbs": [
- "wheat",
- "sunflower",
- "corn",
- "calendula",
- "nasturtium"
- ]
- }
- },
- {
- "id": "mabon",
- "order": 8,
- "name": "Mabon (Autumn Equinox)",
- "nativeName": "Mabon / Alban Elfed",
- "date": "~September 22–23",
- "type": "solar",
- "season": "Autumn equinox",
- "element": "Earth / Water",
- "description": "The Autumn Equinox and second harvest. A time of balance and thanksgiving; day and night are equal. The God begins his descent into the Underworld. Grapes, corn, and root vegetables are harvested.",
- "associations": {
- "direction": "West",
- "themes": [
- "harvest",
- "balance",
- "gratitude",
- "preparation for darkness",
- "completion"
- ],
- "deities": [
- "Mabon ap Modron",
- "Persephone descending",
- "The Morrigan",
- "Dionysus"
- ],
- "colors": [
- "deep red",
- "brown",
- "russet",
- "purple",
- "gold"
- ],
- "herbs": [
- "ivy",
- "oak",
- "blackberry",
- "rosehip",
- "sage"
- ]
- }
- }
- ]
-}
diff --git a/index.html b/index.html
index bc18103..428494f 100644
--- a/index.html
+++ b/index.html
@@ -5,7 +5,6 @@
Tarot Time!
-
@@ -62,6 +61,25 @@
+
+
+
API Connection Required
+
Connect TaroTime to its API
+
This client stays in shell mode until it has a reachable API URL and, if required by the server, a valid API key.
+
+
+
+
+
Enter your API details to continue.
+
+
+
+
+