@aleph-ai/tinyaleph 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/README.md +187 -2
  2. package/backends/bioinformatics/binding.js +503 -0
  3. package/backends/bioinformatics/dna-computing.js +664 -0
  4. package/backends/bioinformatics/encoding.js +339 -0
  5. package/backends/bioinformatics/folding.js +454 -0
  6. package/backends/bioinformatics/genetic-code.js +269 -0
  7. package/backends/bioinformatics/index.js +522 -0
  8. package/backends/bioinformatics/transcription.js +221 -0
  9. package/backends/bioinformatics/translation.js +264 -0
  10. package/backends/index.js +25 -1
  11. package/core/compound.js +532 -0
  12. package/core/hilbert.js +454 -1
  13. package/core/index.js +106 -12
  14. package/core/inference.js +605 -0
  15. package/core/resonance.js +245 -616
  16. package/core/symbols/archetypes.js +478 -0
  17. package/core/symbols/base.js +302 -0
  18. package/core/symbols/elements.js +487 -0
  19. package/core/symbols/hieroglyphs.js +303 -0
  20. package/core/symbols/iching.js +471 -0
  21. package/core/symbols/index.js +77 -0
  22. package/core/symbols/tarot.js +211 -0
  23. package/core/symbols.js +22 -0
  24. package/docs/design/BIOINFORMATICS_BACKEND_DESIGN.md +493 -0
  25. package/docs/guide/06-symbolic-ai.md +370 -0
  26. package/docs/guide/README.md +2 -1
  27. package/docs/reference/05-symbolic-ai.md +570 -0
  28. package/docs/reference/06-bioinformatics.md +546 -0
  29. package/docs/reference/README.md +32 -2
  30. package/docs/theory/11-prgraph-memory.md +559 -0
  31. package/docs/theory/12-resonant-attention.md +661 -0
  32. package/modular.js +33 -1
  33. package/package.json +1 -1
  34. package/physics/index.js +16 -0
  35. package/physics/kuramoto-coupled-ladder.js +603 -0
@@ -0,0 +1,303 @@
1
+ /**
2
+ * Egyptian Hieroglyph Symbol Definitions
3
+ *
4
+ * A selection of key Egyptian hieroglyphs representing fundamental
5
+ * concepts in one of humanity's oldest writing systems. Each symbol
6
+ * carries layers of meaning from 3000+ years of Egyptian civilization.
7
+ *
8
+ * Unicode range: U+13000 to U+1342F (Egyptian Hieroglyphs)
9
+ * Note: Many hieroglyphs require fonts supporting Egyptian Unicode blocks.
10
+ * Fallback emoji equivalents are provided where possible.
11
+ */
12
+
13
+ const { SymbolCategory } = require('./base');
14
+
15
+ const egyptianHieroglyphs = [
16
+ // ═══════════════════════════════════════════════════════════════════
17
+ // COSMIC & DIVINE SYMBOLS
18
+ // ═══════════════════════════════════════════════════════════════════
19
+
20
+ {
21
+ id: 'hiero_ra',
22
+ unicode: '☀️',
23
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
24
+ meaning: 'Ra/Sun Disc - The hieroglyph of the solar disc, representing the supreme god Ra, creator of all things, who sails his barque across the sky by day and through the underworld by night. The sun is the visible manifestation of divine power, the source of all life, and the eye that sees all. In hieroglyphic writing, this determinative indicates anything related to time, light, or divinity itself.',
25
+ culturalTags: ['egyptian', 'hieroglyph', 'sun', 'deity', 'creation', 'light', 'cosmic']
26
+ },
27
+ {
28
+ id: 'hiero_ankh',
29
+ unicode: '☥',
30
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
31
+ meaning: 'Ankh - The Key of Life, perhaps the most recognizable Egyptian symbol. Combines the feminine oval (eternal waters, the womb) with the masculine T-cross (creative power, the phallus). Gods hold the ankh to pharaohs\' noses, conferring the breath of eternal life. This symbol means "life" but implies eternal life—existence that transcends death. Found in countless tomb paintings promising resurrection.',
32
+ culturalTags: ['egyptian', 'hieroglyph', 'life', 'eternity', 'breath', 'divine', 'resurrection']
33
+ },
34
+ {
35
+ id: 'hiero_djed',
36
+ unicode: '𓊽',
37
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
38
+ meaning: 'Djed Pillar - The backbone of Osiris, symbol of stability, endurance, and resurrection. Originally perhaps a tree trunk or bundle of grain, it became associated with Osiris\'s spine after Set dismembered him. The Raising of the Djed ceremony at Memphis symbolized Osiris\'s resurrection and the stability of the kingdom. Four horizontal bars represent the vertebrae; vertical strength represents eternal duration.',
39
+ culturalTags: ['egyptian', 'hieroglyph', 'stability', 'osiris', 'spine', 'endurance', 'resurrection']
40
+ },
41
+ {
42
+ id: 'hiero_was',
43
+ unicode: '𓌀',
44
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
45
+ meaning: 'Was Scepter - The staff of power, shaped like a canine head (perhaps Set animal) atop a long straight shaft with forked base. Gods and pharaohs carry it as symbol of dominion over chaos and desert forces. The was embodies the power to command, the authority to rule, and the strength to overcome enemies. Often paired with ankh and djed to represent complete blessing.',
46
+ culturalTags: ['egyptian', 'hieroglyph', 'power', 'dominion', 'scepter', 'authority', 'rule']
47
+ },
48
+ {
49
+ id: 'hiero_eye_of_horus',
50
+ unicode: '👁️',
51
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
52
+ meaning: 'Wedjat/Eye of Horus - The restored eye lost in battle with Set, healed by Thoth\'s magic. The wedjat represents healing, protection, wholeness, and the waxing moon. Its six parts correspond to fractions (1/2, 1/4, 1/8, 1/16, 1/32, 1/64) totaling 63/64—the missing piece restored by magic. Painted on boats, coffins, and amulets for protection. The eye sees what cannot be hidden.',
53
+ culturalTags: ['egyptian', 'hieroglyph', 'horus', 'protection', 'healing', 'moon', 'wholeness']
54
+ },
55
+ {
56
+ id: 'hiero_scarab',
57
+ unicode: '🪲',
58
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
59
+ meaning: 'Khepri/Scarab - The dung beetle rolling its ball evoked the god Khepri rolling the sun across the sky. Symbol of transformation, self-creation, and the rising sun. The beetle emerges from dung as if created from nothing—autogenesis, becoming through one\'s own power. Scarab amulets were placed over mummies\' hearts, inscribed with spells to prevent the heart from testifying against the deceased.',
60
+ culturalTags: ['egyptian', 'hieroglyph', 'transformation', 'sun', 'rebirth', 'self-creation', 'khepri']
61
+ },
62
+ {
63
+ id: 'hiero_shen',
64
+ unicode: '⭕',
65
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
66
+ meaning: 'Shen Ring - The endless loop of rope symbolizing eternity, completeness, and divine protection. When elongated around a pharaoh\'s name, it becomes the cartouche—the protective oval encircling royal identity. The shen represents that which has no beginning and no end, the eternal cycling of existence. Often held by hovering falcons or vultures offering eternal protection.',
67
+ culturalTags: ['egyptian', 'hieroglyph', 'eternity', 'protection', 'infinity', 'cartouche', 'divine']
68
+ },
69
+ {
70
+ id: 'hiero_maat_feather',
71
+ unicode: '🪶',
72
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
73
+ meaning: 'Feather of Ma\'at - The ostrich feather of the goddess Ma\'at, representing truth, justice, cosmic order, and moral righteousness. Against this feather, the heart of the deceased was weighed in the Hall of Judgment. If the heart was heavier than the feather (weighed down by wrongdoing), it was devoured by Ammit. The feather is impossibly light—only a pure heart balances it.',
74
+ culturalTags: ['egyptian', 'hieroglyph', 'maat', 'truth', 'justice', 'judgment', 'order']
75
+ },
76
+ {
77
+ id: 'hiero_uraeus',
78
+ unicode: '🐍',
79
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
80
+ meaning: 'Uraeus/Cobra - The rearing cobra worn on the pharaoh\'s crown, representing the goddess Wadjet and royal authority. The uraeus spits fire at the pharaoh\'s enemies, providing divine protection. It represents the dangerous power that rulers must wield—destruction in service of order. The cobra rises from the third eye position, linking royal power to divine sight.',
81
+ culturalTags: ['egyptian', 'hieroglyph', 'cobra', 'royalty', 'protection', 'wadjet', 'authority']
82
+ },
83
+ {
84
+ id: 'hiero_lotus',
85
+ unicode: '🪷',
86
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
87
+ meaning: 'Lotus/Seshen - The blue lotus rising from primordial waters at creation, symbol of rebirth, the sun, and Upper Egypt. The lotus closes at night and sinks underwater, rising again with the dawn—a daily resurrection. The god Nefertem emerged from a lotus at creation. The flower\'s intoxicating scent connected it to pleasure and transcendence. Death is merely going down; resurrection is rising again.',
88
+ culturalTags: ['egyptian', 'hieroglyph', 'lotus', 'rebirth', 'creation', 'sun', 'upper_egypt']
89
+ },
90
+
91
+ // ═══════════════════════════════════════════════════════════════════
92
+ // NATURAL WORLD
93
+ // ═══════════════════════════════════════════════════════════════════
94
+
95
+ {
96
+ id: 'hiero_water',
97
+ unicode: '〰️',
98
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
99
+ meaning: 'Nile/Water (Nun) - The zigzag hieroglyph representing water, specifically the waters of the Nile and the primordial ocean Nun from which all creation emerged. Three zigzag lines indicate the plural—vast waters. Egypt exists only because of the Nile; this symbol appears in "Hapi" (Nile personified) and countless words relating to purification, life, and the underworld\'s waters.',
100
+ culturalTags: ['egyptian', 'hieroglyph', 'water', 'nile', 'creation', 'nun', 'element']
101
+ },
102
+ {
103
+ id: 'hiero_horizon',
104
+ unicode: '🌄',
105
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
106
+ meaning: 'Akhet/Horizon - Two mountains with the sun between them, representing the place where sun rises and sets—the threshold between worlds. The akhet is the liminal zone of transformation where Ra is reborn each dawn and dies each sunset. The Great Sphinx guards the akhet at Giza. This symbol represents transition, transformation, and the gates between realms of existence.',
107
+ culturalTags: ['egyptian', 'hieroglyph', 'horizon', 'threshold', 'transformation', 'sun', 'liminal']
108
+ },
109
+ {
110
+ id: 'hiero_papyrus',
111
+ unicode: '🌿',
112
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
113
+ meaning: 'Wadj/Papyrus - The papyrus reed symbolizing Lower Egypt, youth, vigor, and flourishing growth. The scepter of the goddess Wadjet (from the same root) uses the papyrus form. "Wadj" means green and fresh—the opposite of desert death. Papyrus thickets provided materials for writing, boats, and shelter, making this humble plant essential to civilization.',
114
+ culturalTags: ['egyptian', 'hieroglyph', 'papyrus', 'lower_egypt', 'growth', 'green', 'wadjet']
115
+ },
116
+ {
117
+ id: 'hiero_sky',
118
+ unicode: '🌌',
119
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
120
+ meaning: 'Pet/Sky - The flat rectangle representing the sky, often depicted as the goddess Nut arched over the earth. The sky is the ceiling of the world, the belly of Nut covered with stars that she swallows at dawn and gives birth to at dusk. This hieroglyph appears in countless divine names and words relating to the heavens, eternal realms, and celestial phenomena.',
121
+ culturalTags: ['egyptian', 'hieroglyph', 'sky', 'nut', 'heavens', 'cosmic', 'celestial']
122
+ },
123
+ {
124
+ id: 'hiero_desert',
125
+ unicode: '🏜️',
126
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
127
+ meaning: 'Deshret/Desert - The three sand hills representing the "Red Land"—the desert that both threatens and protects Egypt. The desert is the realm of Set, chaos, and death, but also the barrier that keeps enemies at bay. The red desert contrasts with the "Black Land" (kemet)—the fertile Nile valley. Foreign lands and chaos are desert; order and life are the Black Land.',
128
+ culturalTags: ['egyptian', 'hieroglyph', 'desert', 'set', 'chaos', 'foreign', 'red_land']
129
+ },
130
+ {
131
+ id: 'hiero_star',
132
+ unicode: '⭐',
133
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
134
+ meaning: 'Seba/Star - The five-pointed star representing celestial bodies and the concept of "time" and "teaching." The imperishable stars (circumpolar stars that never set) were destinations for the blessed dead—to become an akh among the stars was the soul\'s highest aspiration. Stars are the souls of the gods and the righteous dead, watching from eternity.',
135
+ culturalTags: ['egyptian', 'hieroglyph', 'star', 'time', 'heaven', 'soul', 'eternal']
136
+ },
137
+
138
+ // ═══════════════════════════════════════════════════════════════════
139
+ // SACRED ANIMALS
140
+ // ═══════════════════════════════════════════════════════════════════
141
+
142
+ {
143
+ id: 'hiero_falcon',
144
+ unicode: '🦅',
145
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
146
+ meaning: 'Horus/Falcon - The falcon hieroglyph, sacred to Horus, representing divine kingship and sky power. The falcon sees all from above; its dive is irresistible force; its cry echoes across the sky. Every pharaoh was Horus incarnate—"The Distant One" made present in flesh. The falcon hieroglyph with sun disc is Ra-Horakhty, combining sun god and sky god.',
147
+ culturalTags: ['egyptian', 'hieroglyph', 'falcon', 'horus', 'kingship', 'sky', 'divine']
148
+ },
149
+ {
150
+ id: 'hiero_ibis',
151
+ unicode: '🦢',
152
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
153
+ meaning: 'Thoth/Ibis - The ibis sacred to Thoth, god of wisdom, writing, magic, and the moon. The curved beak resembles the crescent moon; the bird wades thoughtfully in waters of knowledge. Thoth invented hieroglyphs, recorded the verdict of the dead, and mediated between cosmic forces. The ibis represents contemplation, precision, and the magic of the written word.',
154
+ culturalTags: ['egyptian', 'hieroglyph', 'ibis', 'thoth', 'wisdom', 'writing', 'moon']
155
+ },
156
+ {
157
+ id: 'hiero_jackal',
158
+ unicode: '🐺',
159
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
160
+ meaning: 'Anubis/Jackal - The jackal or wild dog sacred to Anubis, lord of embalming and guide of souls. Jackals haunted cemeteries at the desert\'s edge, so the Egyptians made them guardians rather than threats. The recumbent jackal atop a shrine represents both danger transformed and death tamed. Anubis prepares bodies for eternity and leads souls safely through darkness.',
161
+ culturalTags: ['egyptian', 'hieroglyph', 'jackal', 'anubis', 'death', 'embalming', 'guide']
162
+ },
163
+ {
164
+ id: 'hiero_cat',
165
+ unicode: '🐱',
166
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
167
+ meaning: 'Bastet/Cat - The cat sacred to Bastet, goddess of home, fertility, and protection. Cats protected grain stores from vermin and homes from snakes and scorpions—practical guardians elevated to divine status. Killing a cat, even accidentally, was capital offense. The cat represents the domestic sphere sanctified, wild nature tamed into protective presence.',
168
+ culturalTags: ['egyptian', 'hieroglyph', 'cat', 'bastet', 'home', 'protection', 'fertility']
169
+ },
170
+ {
171
+ id: 'hiero_lion',
172
+ unicode: '🦁',
173
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
174
+ meaning: 'Sekhmet/Lion - The lion sacred to Sekhmet, the "Powerful One," goddess of war, destruction, and healing. Lions guarded temple gates and pharaohs\' thrones. Sekhmet\'s wrath once nearly destroyed humanity; only beer dyed red like blood stopped her. The lion represents power that can protect or destroy—the same strength that wins wars can spread plague.',
175
+ culturalTags: ['egyptian', 'hieroglyph', 'lion', 'sekhmet', 'power', 'war', 'healing']
176
+ },
177
+ {
178
+ id: 'hiero_vulture',
179
+ unicode: '🦅',
180
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
181
+ meaning: 'Nekhbet/Vulture - The vulture sacred to Nekhbet, goddess of Upper Egypt and divine motherhood. The vulture spreads protective wings over the pharaoh; her image appears on royal crowns. Vultures were believed to be only female, conceived by the wind—symbols of motherhood without male contribution. Nekhbet and Wadjet together crown the unified pharaoh.',
182
+ culturalTags: ['egyptian', 'hieroglyph', 'vulture', 'nekhbet', 'upper_egypt', 'mother', 'protection']
183
+ },
184
+ {
185
+ id: 'hiero_hippopotamus',
186
+ unicode: '🦛',
187
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
188
+ meaning: 'Taweret/Hippopotamus - The female hippopotamus representing Taweret, protector of childbirth and pregnant women. The hippo\'s fierce maternal defense translated to divine protection for the vulnerable. Taweret has hippo body, lion paws, and crocodile back—a composite of dangerous creatures transformed into beneficent guardian. Her amulets protected mother and child through birth\'s dangers.',
189
+ culturalTags: ['egyptian', 'hieroglyph', 'hippo', 'taweret', 'childbirth', 'protection', 'mother']
190
+ },
191
+ {
192
+ id: 'hiero_crocodile',
193
+ unicode: '🐊',
194
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
195
+ meaning: 'Sobek/Crocodile - The crocodile sacred to Sobek, god of the Nile\'s dangerous power. Crocodiles represented both feared destruction and respected strength. Sobek protects the pharaoh and ensures the Nile\'s fertility. Live crocodiles were kept in temple pools, mummified at death. The crocodile represents natural force that must be propitiated—power respected rather than opposed.',
196
+ culturalTags: ['egyptian', 'hieroglyph', 'crocodile', 'sobek', 'nile', 'power', 'danger']
197
+ },
198
+
199
+ // ═══════════════════════════════════════════════════════════════════
200
+ // HUMAN BODY PARTS
201
+ // ═══════════════════════════════════════════════════════════════════
202
+
203
+ {
204
+ id: 'hiero_eye',
205
+ unicode: '👁️',
206
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
207
+ meaning: 'Ir/Eye - The human eye hieroglyph representing sight, action, and creation. The eye is the instrument through which Ra created the world and through which consciousness perceives reality. "Ir" as a verb means "to do" or "to make"—seeing and doing are connected. The eye also weeps, and from Ra\'s tears came humanity. Perception is creative act.',
208
+ culturalTags: ['egyptian', 'hieroglyph', 'eye', 'sight', 'creation', 'perception', 'action']
209
+ },
210
+ {
211
+ id: 'hiero_mouth',
212
+ unicode: '👄',
213
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
214
+ meaning: 'Ra/Mouth - The mouth hieroglyph representing speech, ingestion, and the Opening of the Mouth ceremony that restored senses to the mummy. Speech creates; words spoken aloud have power. The god Ptah created the world by speaking its names. The mouth also takes in sustenance—food offerings for the ka. To speak someone\'s name preserves their existence.',
215
+ culturalTags: ['egyptian', 'hieroglyph', 'mouth', 'speech', 'creation', 'ceremony', 'power']
216
+ },
217
+ {
218
+ id: 'hiero_heart',
219
+ unicode: '❤️',
220
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
221
+ meaning: 'Ib/Heart - The heart-shaped vessel hieroglyph representing the seat of consciousness, memory, and moral character. The heart was left in the mummy because it was needed at the Judgment of the Dead, when it was weighed against Ma\'at\'s feather. Heart scarabs prevented the heart from testifying against its owner. The heart thinks, feels, and carries the moral record of a life.',
222
+ culturalTags: ['egyptian', 'hieroglyph', 'heart', 'consciousness', 'judgment', 'morality', 'soul']
223
+ },
224
+ {
225
+ id: 'hiero_arm',
226
+ unicode: '💪',
227
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
228
+ meaning: 'A/Arm - The arm hieroglyph representing action, strength, and offering. The arm with palm down gives; with palm up, receives. The ka hieroglyph shows two raised arms—the vital force embracing the person. Arms wielding weapons protect; arms making offerings sustain the gods. Physical capability translated into hieroglyphic language.',
229
+ culturalTags: ['egyptian', 'hieroglyph', 'arm', 'action', 'strength', 'offering', 'ka']
230
+ },
231
+
232
+ // ═══════════════════════════════════════════════════════════════════
233
+ // CONCEPTS & ABSTRACTIONS
234
+ // ═══════════════════════════════════════════════════════════════════
235
+
236
+ {
237
+ id: 'hiero_ka',
238
+ unicode: '🙌',
239
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
240
+ meaning: 'Ka - Two upraised arms, representing the vital force or spirit double that each person possesses from birth. The ka is the life energy that distinguishes living from dead, the aspect that requires food offerings to survive in the afterlife. The ka is born with you, remains after death, and must be sustained. It is not quite soul, not quite body—the animating principle itself.',
241
+ culturalTags: ['egyptian', 'hieroglyph', 'ka', 'soul', 'spirit', 'vitality', 'afterlife']
242
+ },
243
+ {
244
+ id: 'hiero_ba',
245
+ unicode: '🐦',
246
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
247
+ meaning: 'Ba - The human-headed bird representing the mobile soul that can leave the tomb during the day, traveling between worlds. The ba is personality, the unique individual essence that flies free while the body remains preserved. At night, the ba returns to reunite with the mummy. If the body is destroyed, the ba has nowhere to return—hence mummification\'s importance.',
248
+ culturalTags: ['egyptian', 'hieroglyph', 'ba', 'soul', 'bird', 'personality', 'mobility']
249
+ },
250
+ {
251
+ id: 'hiero_akh',
252
+ unicode: '✨',
253
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
254
+ meaning: 'Akh - The "shining one," the transformed, blessed dead who has successfully passed through judgment and become one with the imperishable stars. The akh is the final form of the spirit—effective, powerful, radiant with divine light. It represents complete spiritual transformation, the goal of all funerary rites. The akh can help or harm the living.',
255
+ culturalTags: ['egyptian', 'hieroglyph', 'akh', 'spirit', 'transformation', 'blessed_dead', 'light']
256
+ },
257
+ {
258
+ id: 'hiero_sekhem',
259
+ unicode: '⚡',
260
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
261
+ meaning: 'Sekhem - The power/scepter hieroglyph representing vital force, divine energy, and authority. Sekhem is the power that animates all things, the force wielded by gods and channeled by priests. The sekhem scepter was carried in processions. Sekhmet\'s name means "the one who has sekhem"—ultimate concentrated power.',
262
+ culturalTags: ['egyptian', 'hieroglyph', 'sekhem', 'power', 'energy', 'authority', 'force']
263
+ },
264
+ {
265
+ id: 'hiero_heka',
266
+ unicode: '🔮',
267
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
268
+ meaning: 'Heka - Magic, the primordial creative force that existed before the gods. Heka is not supernatural but a fundamental power woven into creation itself. Priests wielded heka through words, rituals, and images. The god Heka personified this force. Speaking names, wearing amulets, performing rites—all channel heka. Magic is simply knowing how reality actually works.',
269
+ culturalTags: ['egyptian', 'hieroglyph', 'heka', 'magic', 'creation', 'power', 'ritual']
270
+ },
271
+ {
272
+ id: 'hiero_ren',
273
+ unicode: '📝',
274
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
275
+ meaning: 'Ren/Name - The hieroglyphs representing a person\'s true name, considered an essential part of the soul. To speak someone\'s name is to keep them alive; to erase their name is to destroy them utterly. Pharaohs\' names were protected by cartouches; enemies\' names were ritually destroyed. The ren carries the essence of identity itself—naming calls into being.',
276
+ culturalTags: ['egyptian', 'hieroglyph', 'name', 'identity', 'soul', 'power', 'memory']
277
+ },
278
+ {
279
+ id: 'hiero_shu',
280
+ unicode: '💨',
281
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
282
+ meaning: 'Shu/Air - The feather representing the god Shu (air) and the concept of breath, space, and emptiness. Shu separates sky from earth, holding Nut above Geb with upraised arms. The feather is lightness itself—what makes the heart light enough to balance against Ma\'at. Air is both empty and essential; Shu represents the nothing that makes everything possible.',
283
+ culturalTags: ['egyptian', 'hieroglyph', 'air', 'shu', 'breath', 'space', 'separation']
284
+ },
285
+ {
286
+ id: 'hiero_neheh',
287
+ unicode: '♾️',
288
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
289
+ meaning: 'Neheh - Cyclical eternity, the eternal recurrence of time through endless repetition. Neheh is the forever of sunrise after sunrise, flood after flood, life after life. It contrasts with djet (linear eternity). Neheh is dynamic, moving, the wheel that turns; it is the eternity of becoming rather than being. The dead exist in both eternities—cyclic and linear, moving and stable.',
290
+ culturalTags: ['egyptian', 'hieroglyph', 'eternity', 'time', 'cycle', 'recurring', 'forever']
291
+ },
292
+ {
293
+ id: 'hiero_djet',
294
+ unicode: '🏛️',
295
+ category: SymbolCategory.EGYPTIAN_HIEROGLYPHS,
296
+ meaning: 'Djet - Linear, stable eternity, the unchanging permanence of a single moment stretched forever. Djet is represented by the land-sign—solid, unmoving, eternal like the earth itself. While neheh cycles, djet endures unchanged. Together they comprise complete eternity. The blessed dead experience djet—the perfected moment sustained eternally, removed from time\'s wear.',
297
+ culturalTags: ['egyptian', 'hieroglyph', 'eternity', 'permanence', 'stability', 'unchanging', 'forever']
298
+ }
299
+ ];
300
+
301
+ module.exports = {
302
+ egyptianHieroglyphs
303
+ };