feat(tui2): copy tui crate and normalize snapshots (#7833)
Introduce a full codex-tui source snapshot under the new codex-tui2 crate so viewport work can be replayed in isolation. This change copies the entire codex-rs/tui/src tree into codex-rs/tui2/src in one atomic step, rather than piecemeal, to keep future diffs vs the original viewport bookmark easy to reason about. The goal is for codex-tui2 to render identically to the existing TUI behind the `features.tui2` flag while we gradually port the viewport/history commits from the joshka/viewport bookmark onto this forked tree. While on this baseline change, we also ran the codex-tui2 snapshot test suite and accepted all insta snapshots for the new crate, so the snapshot files now use the codex-tui2 naming scheme and encode the unmodified legacy TUI behavior. This keeps later viewport commits focused on intentional behavior changes (and their snapshots) rather than on mechanical snapshot renames.
This commit is contained in:
parent
321625072a
commit
90f262e9a4
742 changed files with 53559 additions and 19 deletions
57
codex-rs/Cargo.lock
generated
57
codex-rs/Cargo.lock
generated
|
|
@ -1596,11 +1596,68 @@ name = "codex-tui2"
|
|||
version = "0.0.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"arboard",
|
||||
"assert_matches",
|
||||
"async-stream",
|
||||
"base64",
|
||||
"chrono",
|
||||
"clap",
|
||||
"codex-ansi-escape",
|
||||
"codex-app-server-protocol",
|
||||
"codex-arg0",
|
||||
"codex-backend-client",
|
||||
"codex-common",
|
||||
"codex-core",
|
||||
"codex-feedback",
|
||||
"codex-file-search",
|
||||
"codex-login",
|
||||
"codex-protocol",
|
||||
"codex-tui",
|
||||
"codex-windows-sandbox",
|
||||
"color-eyre",
|
||||
"crossterm",
|
||||
"derive_more 2.1.0",
|
||||
"diffy",
|
||||
"dirs",
|
||||
"dunce",
|
||||
"image",
|
||||
"insta",
|
||||
"itertools 0.14.0",
|
||||
"lazy_static",
|
||||
"libc",
|
||||
"mcp-types",
|
||||
"opentelemetry-appender-tracing",
|
||||
"pathdiff",
|
||||
"pretty_assertions",
|
||||
"pulldown-cmark",
|
||||
"rand 0.9.2",
|
||||
"ratatui",
|
||||
"ratatui-macros",
|
||||
"regex-lite",
|
||||
"reqwest",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"serial_test",
|
||||
"shlex",
|
||||
"strum 0.27.2",
|
||||
"strum_macros 0.27.2",
|
||||
"supports-color 3.0.2",
|
||||
"tempfile",
|
||||
"textwrap 0.16.2",
|
||||
"tokio",
|
||||
"tokio-stream",
|
||||
"tokio-util",
|
||||
"toml",
|
||||
"tracing",
|
||||
"tracing-appender",
|
||||
"tracing-subscriber",
|
||||
"tree-sitter-bash",
|
||||
"tree-sitter-highlight",
|
||||
"unicode-segmentation",
|
||||
"unicode-width 0.2.1",
|
||||
"url",
|
||||
"uuid",
|
||||
"vt100",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
|
|||
|
|
@ -663,7 +663,8 @@ async fn run_interactive_tui(
|
|||
codex_linux_sandbox_exe: Option<PathBuf>,
|
||||
) -> std::io::Result<AppExitInfo> {
|
||||
if is_tui2_enabled(&interactive).await? {
|
||||
tui2::run_main(interactive, codex_linux_sandbox_exe).await
|
||||
let result = tui2::run_main(interactive.into(), codex_linux_sandbox_exe).await?;
|
||||
Ok(result.into())
|
||||
} else {
|
||||
codex_tui::run_main(interactive, codex_linux_sandbox_exe).await
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ name = "codex-tui2"
|
|||
path = "src/main.rs"
|
||||
|
||||
[features]
|
||||
# Keep feature surface aligned with codex-tui while tui2 delegates to it.
|
||||
# Keep feature surface aligned with codex-tui while tui2 evolves separately.
|
||||
vt100-tests = []
|
||||
debug-logs = []
|
||||
|
||||
|
|
@ -22,8 +22,95 @@ workspace = true
|
|||
|
||||
[dependencies]
|
||||
anyhow = { workspace = true }
|
||||
async-stream = { workspace = true }
|
||||
base64 = { workspace = true }
|
||||
chrono = { workspace = true, features = ["serde"] }
|
||||
clap = { workspace = true, features = ["derive"] }
|
||||
codex-ansi-escape = { workspace = true }
|
||||
codex-app-server-protocol = { workspace = true }
|
||||
codex-arg0 = { workspace = true }
|
||||
codex-common = { workspace = true }
|
||||
codex-backend-client = { workspace = true }
|
||||
codex-common = { workspace = true, features = [
|
||||
"cli",
|
||||
"elapsed",
|
||||
"sandbox_summary",
|
||||
] }
|
||||
codex-core = { workspace = true }
|
||||
codex-feedback = { workspace = true }
|
||||
codex-file-search = { workspace = true }
|
||||
codex-login = { workspace = true }
|
||||
codex-protocol = { workspace = true }
|
||||
codex-tui = { workspace = true }
|
||||
color-eyre = { workspace = true }
|
||||
crossterm = { workspace = true, features = ["bracketed-paste", "event-stream"] }
|
||||
derive_more = { workspace = true, features = ["is_variant"] }
|
||||
diffy = { workspace = true }
|
||||
dirs = { workspace = true }
|
||||
dunce = { workspace = true }
|
||||
image = { workspace = true, features = ["jpeg", "png"] }
|
||||
itertools = { workspace = true }
|
||||
lazy_static = { workspace = true }
|
||||
mcp-types = { workspace = true }
|
||||
opentelemetry-appender-tracing = { workspace = true }
|
||||
pathdiff = { workspace = true }
|
||||
pulldown-cmark = { workspace = true }
|
||||
rand = { workspace = true }
|
||||
ratatui = { workspace = true, features = [
|
||||
"scrolling-regions",
|
||||
"unstable-backend-writer",
|
||||
"unstable-rendered-line-info",
|
||||
"unstable-widget-ref",
|
||||
] }
|
||||
ratatui-macros = { workspace = true }
|
||||
regex-lite = { workspace = true }
|
||||
reqwest = { version = "0.12", features = ["json"] }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json = { workspace = true, features = ["preserve_order"] }
|
||||
shlex = { workspace = true }
|
||||
strum = { workspace = true }
|
||||
strum_macros = { workspace = true }
|
||||
supports-color = { workspace = true }
|
||||
tempfile = { workspace = true }
|
||||
textwrap = { workspace = true }
|
||||
tokio = { workspace = true, features = [
|
||||
"io-std",
|
||||
"macros",
|
||||
"process",
|
||||
"rt-multi-thread",
|
||||
"signal",
|
||||
"test-util",
|
||||
"time",
|
||||
] }
|
||||
tokio-stream = { workspace = true }
|
||||
toml = { workspace = true }
|
||||
tracing = { workspace = true, features = ["log"] }
|
||||
tracing-appender = { workspace = true }
|
||||
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
||||
tree-sitter-bash = { workspace = true }
|
||||
tree-sitter-highlight = { workspace = true }
|
||||
unicode-segmentation = { workspace = true }
|
||||
unicode-width = { workspace = true }
|
||||
url = { workspace = true }
|
||||
|
||||
codex-windows-sandbox = { workspace = true }
|
||||
tokio-util = { workspace = true, features = ["time"] }
|
||||
|
||||
[target.'cfg(unix)'.dependencies]
|
||||
libc = { workspace = true }
|
||||
|
||||
# Clipboard support via `arboard` is not available on Android/Termux.
|
||||
# Only include it for non-Android targets so the crate builds on Android.
|
||||
[target.'cfg(not(target_os = "android"))'.dependencies]
|
||||
arboard = { workspace = true }
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
codex-core = { workspace = true, features = ["test-support"] }
|
||||
assert_matches = { workspace = true }
|
||||
chrono = { workspace = true, features = ["serde"] }
|
||||
insta = { workspace = true }
|
||||
pretty_assertions = { workspace = true }
|
||||
rand = { workspace = true }
|
||||
serial_test = { workspace = true }
|
||||
vt100 = { workspace = true }
|
||||
uuid = { workspace = true }
|
||||
|
|
|
|||
17
codex-rs/tui2/frames/blocks/frame_1.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_1.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▓▒▓▒██▒▒██▒
|
||||
▒▒█▓█▒█▓█▒▒░░▒▒ ▒ █▒
|
||||
█░█░███ ▒░ ░ █░ ░▒░░░█
|
||||
▓█▒▒████▒ ▓█░▓░█
|
||||
▒▒▓▓█▒░▒░▒▒ ▓░▒▒█
|
||||
░█ █░ ░█▓▓░░█ █▓▒░░█
|
||||
█▒ ▓█ █▒░█▓ ░▒ ░▓░
|
||||
░░▒░░ █▓▓░▓░█ ░░
|
||||
░▒░█░ ▓░░▒▒░ ▓░██████▒██ ▒ ░
|
||||
▒░▓█ ▒▓█░ ▓█ ░ ░▒▒▒▓▓███░▓█▓█░
|
||||
▒▒▒ ▒ ▒▒█▓▓░ ░▒████ ▒█ ▓█▓▒▓
|
||||
█▒█ █ ░ ██▓█▒░
|
||||
▒▒█░▒█▒ ▒▒▒█░▒█
|
||||
▒██▒▒ ██▓▓▒▓▓▓▒██▒█░█
|
||||
░█ █░░░▒▒▒█▒▓██
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_10.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_10.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒████▒██▒
|
||||
██░███▒░▓▒██
|
||||
▒▒█░░▓░░▓░█▒██
|
||||
░▒▒▓▒░▓▒▓▒███▒▒█
|
||||
▓ ▓░░ ░▒ ██▓▒▓░▓
|
||||
░░ █░█░▓▓▒ ░▒ ░
|
||||
▒ ░█ █░░░░█ ░▓█
|
||||
░░▒█▓█░░▓▒░▓▒░░
|
||||
░▒ ▒▒░▓░░█▒█▓░░
|
||||
░ █░▒█░▒▓▒█▒▒▒░█░
|
||||
█ ░░░░░ ▒█ ▒░░
|
||||
▒░██▒██ ▒░ █▓▓
|
||||
░█ ░░░░██▓█▓░▓░
|
||||
▓░██▓░█▓▒ ▓▓█
|
||||
██ ▒█▒▒█▓█
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_11.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_11.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
███████▒
|
||||
▓ ▓░░░▒▒█
|
||||
▓ ▒▒░░▓▒█▓▒█
|
||||
░▒▒░░▒▓█▒▒▓▓
|
||||
▒ ▓▓▒░█▒█▓▒░░█
|
||||
░█░░░█▒▓▓░▒▓░░
|
||||
██ █░░░░░░▒░▒▒
|
||||
░ ░░▓░░▒▓ ░ ░
|
||||
▓ █░▓░░█▓█░▒░
|
||||
██ ▒░▓▒█ ▓░▒░▒
|
||||
█░▓ ░░░░▒▓░▒▒░
|
||||
▒▒▓▓░▒█▓██▓░░
|
||||
▒ █░▒▒▒▒░▓
|
||||
▒█ █░░█▒▓█░
|
||||
▒▒ ███▒█░
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_12.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_12.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
█████▓
|
||||
█▒░▒▓░█▒
|
||||
░▓▒██
|
||||
▓█░░░▒▒ ░
|
||||
░ █░░░░▓▓░
|
||||
░█▓▓█▒ ▒░
|
||||
░ ░▓▒░░▒
|
||||
░ ▓█▒░░
|
||||
██ ░▓░░█░░
|
||||
░ ▓░█▓█▒
|
||||
░▓ ░ ▒██▓
|
||||
█ █░ ▒█░
|
||||
▓ ██░██▒░
|
||||
█▒▓ █░▒░░
|
||||
▒ █░▒▓▓
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_13.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_13.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▓████
|
||||
░▒▒░░
|
||||
░░▒░
|
||||
░██░▒
|
||||
█ ░░
|
||||
▓▓░░
|
||||
█ ░░
|
||||
█ ░
|
||||
▓█ ▒░▓
|
||||
░ █▒░
|
||||
█░▓▓ ░░
|
||||
░▒▒▒░
|
||||
░██░▒
|
||||
█▒▒░▒
|
||||
█ ▓ ▒
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_14.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_14.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
████▓
|
||||
█▓▒▒▓▒
|
||||
░▒░░▓ ░
|
||||
░░▓░ ▒░█
|
||||
░░░▒ ░
|
||||
░█░░ █░
|
||||
░░░░ ▓ █
|
||||
░░▒░░ ▒
|
||||
░░░░
|
||||
▒▓▓ ▓▓
|
||||
▒░ █▓█░
|
||||
░█░░▒▒▒░
|
||||
▓ ░▒▒▒░
|
||||
░▒▓█▒▒▓
|
||||
▒█ █▒▓
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_15.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_15.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
█████░▒
|
||||
░█▒░░▒▓██
|
||||
▓▓░█▒▒░ █░
|
||||
░▓░ ▓▓█▓▒▒░
|
||||
░░▒ ▒▒░░▓ ▒░
|
||||
▒░░▓░░▓▓░
|
||||
░░ ░░░░░░█░
|
||||
░░▓░░█░░░ █▓░
|
||||
░░████░░░▒▓▓░
|
||||
░▒░▓▓░▒░█▓ ▓░
|
||||
░▓░░░░▒░ ░ ▓
|
||||
░██▓▒░░▒▓ ▒
|
||||
█░▒█ ▓▓▓░ ▓░
|
||||
░▒░░▒▒▓█▒▓
|
||||
▒▒█▒▒▒▒▓
|
||||
░░
|
||||
17
codex-rs/tui2/frames/blocks/frame_16.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_16.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▒█ ███░▒
|
||||
▓▒░░█░░▒░▒▒
|
||||
░▓▓ ▒▓▒▒░░ █▒
|
||||
▓▓▓ ▓█▒▒░▒░░██░
|
||||
░░▓▒▓██▒░░█▓░░▒
|
||||
░░░█░█ ░▒▒ ░ ░▓░
|
||||
▒▒░ ▓░█░░░░▓█ █ ░
|
||||
░▓▓ ░░░░▓░░░ ▓ ░░
|
||||
▒▒░░░█░▓▒░░ ██ ▓
|
||||
█ ▒▒█▒▒▒█░▓▒░ █▒░
|
||||
░░░█ ▓█▒░▓ ▓▓░░░
|
||||
░░█ ░░ ░▓▓█ ▓
|
||||
▒░█ ░ ▓█▓▒█░
|
||||
▒░░ ▒█░▓▓█▒░
|
||||
█▓▓▒▒▓▒▒▓█
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_17.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_17.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
█▒███▓▓░█▒
|
||||
▒▓██░░░█▒█░█ ▒█
|
||||
██▒▓▒▒▒░██ ░░░▒ ▒
|
||||
▓░▓▒▓░ ▒░ █░▓▒░░░▒▒
|
||||
░▓▒ ░ ░ ▓▒▒▒▓▓ █
|
||||
░▒██▓░ █▓▓░ ▓█▒▓░▓▓
|
||||
█ ▓▓░ █▓▓░▒ █ ░░▓▒░
|
||||
▓ ▒░ ▓▓░░▓░█░░▒▓█
|
||||
█▓█▓▒▒▒█░▒▒░▒▒▓▒░░░ ░
|
||||
░ ▒▓▒▒░▓█▒▓░░▒ ▒███▒
|
||||
▒▒▒▓ ████▒▒░█▓▓▒ ▒█
|
||||
▒░░▒█ ░▓░░░ ▓
|
||||
▒▒▒ █▒▒ ███▓▒▒▓
|
||||
█ ░██▒▒█░▒▓█▓░█
|
||||
░█▓▓▒██░█▒██
|
||||
░
|
||||
17
codex-rs/tui2/frames/blocks/frame_18.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_18.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▒▒█▒▒█▓░█▒
|
||||
▒█ ▒▓███░▒▒█ █▓▓▒
|
||||
▒▓▓░█ █▒ █ ▓▒ █▓▓▒ █
|
||||
█░░█▓█▒ █ █▒░▒▓▒░▒▓▒▒▒█
|
||||
▒▒▓▓ ▓░ ▒ █▒▒▓░▓░▒▒▓▒▒▒
|
||||
▓▒░ ██░▓▒▒▒▓███░█▓▓▒▓░▓░
|
||||
░░▒▓▓ █▓█▓░ ▒▓ █░▒░▒█
|
||||
▒▓░░ ▒▒ ░░▓▒ ░▓░
|
||||
▒ █▒▒▒▓▒▓█░░█░█▓▒█ ░█░░
|
||||
▒▒▒░█▒█ ░░▓▒▒▒▒░░░▒▓░░▒ █
|
||||
░▓░▒░ █████░ ▒▒▒▓░▓█▓░▓░
|
||||
▒▒ █▒█ ░░█ ▓█▒█
|
||||
▒▒██▒▒▓ ▒█▒▒▓▒█░
|
||||
█░▓████▒▒▒▒██▒▓▒██
|
||||
░░▒▓▒▒█▓█ ▓█
|
||||
░
|
||||
17
codex-rs/tui2/frames/blocks/frame_19.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_19.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▒▒▒█░█▒▒░▓▒
|
||||
▒█░░░▒▓▒▒▒▒█▒█░███
|
||||
██▓▓▓ ░██░ ░█▓█░█▓▒
|
||||
▓▓░██▒░ ▒▒▒██▒░██
|
||||
░░▓░▓░ █░▒ ▓ ░▒ ░▒█
|
||||
░▒▓██ ▒░█░▓ ▓▓ █▓█░
|
||||
▒▒░░█ ▓█▒▓░██░ ▓▓▓█░
|
||||
░░░░ ░▓ ▒░ █ ░ ░░░
|
||||
░█░▒█▒▓▓▒▒▒░░░░██▓█░▓ ▒ ░░
|
||||
▒▓▓█░▒█▓▒██▒█░█ ▒▒ ▓▒▒▒█▓▓░▒
|
||||
█▒ ▓█░ ██ ▒▒▒▓░▓▓ ▓▓█
|
||||
▒▒▒█▒▒ ░▓▓▒▓▓█
|
||||
█ ▒▒░░██ █▓▒▓▓░▓░
|
||||
█ ▓░█▓░█▒▒▒▓▓█ ▓█░█
|
||||
░▓▒▓▓█▒█▓▒█▓▒
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_2.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_2.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▓▒▓▒█▒▒▒██▒
|
||||
▒██▓█▓█░░░▒░░▒▒█░██▒
|
||||
█░█░▒██░█░░ ░ █▒█▓░░▓░█
|
||||
▒░▓▒▓████▒ ▓█▒░▓░█
|
||||
█▒ ▓█▒░▒▒▒▒▒ ▒█░▒░█
|
||||
█▓█ ░ ░█▒█▓▒█ ▒▒░█░
|
||||
█░██░ ▒▓░▓░▒░█ ▓ ░ ░
|
||||
░ ▒░ █░█░░▓█ ░█▓▓░
|
||||
█ ▒░ ▓░▒▒▒░ ▓░█████████░▒░░█
|
||||
▒▒█░ ▓░░█ ▓█ ░▒▒▒▒▒▒▓▓▒▒░█▓ ░
|
||||
▒▒▒ █ █▒▓▓░█ ░ ███████ ░██░░
|
||||
█▒▒▓▓█ ░ ██▓▓██
|
||||
▓▒▒▒░██ █▒▒█ ▒░
|
||||
░░▒▓▒▒ ██▓▓▒▓▓▓▒█░▒░░█
|
||||
░████░░▒▒▒▒░▓▓█
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_20.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_20.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▒█▒░░▒█▒█▒▒
|
||||
█▓▒ ▓█▒█▒▒▒░░▒▒█▒██
|
||||
██ ▒██ ░█ ░ ▒ ▒██░█▒
|
||||
▒░ ▒█░█ ▒██░▒▓█▒▒
|
||||
▒░ █░█ ▒▓ ▒░░▒█▒░░▒
|
||||
▓░█░█ ███▓░ ▓ █▒░░▒
|
||||
▓░▓█░ ██ ▓██▒ █▒░▓
|
||||
░▒▒▓░ ▓▓░ █ ░░ ░
|
||||
░▓░░▓█▒▓▒▒▒▒▒▒▒██▓▒▒▒▒█ ▓ ░▒
|
||||
█░▒░▒ ▓░░▒▒▒▒░▒ █▒▒ ░▒▒ █▓ ░░
|
||||
▒█▒▒█ █ ▒█▒░░█░ ▓▒
|
||||
█ ▒█▓█ ▒▓█▓░▓
|
||||
▒▒▒██░▒ █▓█░▓██
|
||||
▒█▓▓ ░█▒▓▓█▓ ░ ░█▓██
|
||||
░██░▒ ▒▒▒▒▒░█
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_21.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_21.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▒█▒█▒▒█▒██▒▒
|
||||
███░░▒▒█░▒░█▓▒░▓██▒
|
||||
▓█▒▒██▒ ░ ░▒░██▒░██
|
||||
██░▓ █ ▒█▓██▓██
|
||||
▓█▓█░ █░▓▒▒ ▒▒▒▒█
|
||||
▓ ▓░ ███▒▓▓ ▒▒▒█
|
||||
░█░░ ▒ ▓░█▓█ ▒▓▒
|
||||
░▒ ▒▓ ░█ ░ ░
|
||||
░ ░ ██▓▓▓▓▓███ ▒░█ ░█ ▓▓ ░
|
||||
░ ░▒ ░▒ ▒█░ ▒ ░█░█ ▓ ▓▓
|
||||
▓ ▓ ░░ █░ ██▒█▓ ▓░ █
|
||||
██ ▓▓▒ ▒█ ▓
|
||||
█▒ ▒▓▒ ▒▓▓██ █░
|
||||
█▒▒ █ ██▓░░▓▓▒█ ▓░
|
||||
███▓█▒▒▒▒█▒▓██░
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_22.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_22.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒██▒█▒▒█▒██▒
|
||||
▒█▓█░▓▒▓░▓▒░░▓░█▓██▒
|
||||
█▓█▓░▒██░ ░ █▒███▒▒██
|
||||
▓█░██ ██░░░▒█▒
|
||||
▒░░▓█ █▒▓░▒░▓▓▓█░
|
||||
▒░█▓░ █░▓░▓▒▓░ ▒░▒▒░
|
||||
░██▒▓ ░█░▒█▓█ ░░▓░
|
||||
░░▒░░ ░▒░░▒▒ ░▒░ ░
|
||||
░░█ █ █░▒▒▓▓▓▒██▒▒█░▒ ▒█ ▒░▓
|
||||
▒░▒ █▒▒▒█ ▓█ ░▓▓░ ▒█▓▒ ░██ ▓▒▒
|
||||
▒▒▒▒░ ██ ░ ░▓██▒▓▓▓ █░
|
||||
▒█▒▒▒█ ▒██ ░██
|
||||
█ █▓ ██▒ ▒▓██ █▒▓
|
||||
█▓███ █░▓▒█▓▓▓▒█ ███
|
||||
░ ░▒▓▒▒▒▓▒▒▓▒█░
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_23.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_23.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒██▒▒████▒█▒▒
|
||||
▒▒░█░▒▒█▒▒▒█░▒░█░█▒
|
||||
█ █░██▓█░ ░▓█░▒▓░░█
|
||||
▓▓░█▓▓░ ▒▓▓▒░░▓▒
|
||||
▓▓░░▓█ █▓████▓█▒░▒
|
||||
█▒░ ▓░ ▒█████▓██░░▒░█
|
||||
░░░ ░ ▓▓▓▓ ▒░░ ░██
|
||||
░▓░ ░ ░ ░█▒▒█ ░ █▓░
|
||||
▒ ▒ ░█░▓▒▒▒▒▒▓▒░▒█░▒ ▒▒ ░ ░░░
|
||||
░▒▒▒░ ▒ ▓░▒ ▒░▒▒█░ ▒▒░
|
||||
▓█░ ░ ░ █░▓▓▒░▒▓▒▓░
|
||||
█░░▒░▓ █▓░▒▒▓░
|
||||
▒ ░██▓▒▒ ▒▓ ▓█▓█▓
|
||||
▒▒▒█▓██▒░▒▒▒██ ▓▒██░
|
||||
░ █▒▒░▒▒█▒▒██░
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_24.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_24.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒░▒▓███▒▒█▒
|
||||
█ ▒▓ ░▒▒░▒▒██▒██
|
||||
█ █▓▒▓█ ░ ▓░▓█░███ ▒
|
||||
██▓▓█▓░▒█▒░░▓░ ▒█▒░▒▒█
|
||||
█ ▓▓▒▓█ ░ ▓▒▒░░░▒░██
|
||||
░█▒█▒░ ███▓ ▓░▓ ▓ ▒
|
||||
░ ░░ █▓▒█▓ ▓▒▒░▒▒░▒
|
||||
░ ▒░░ ░█▒▓▒▒░░▒▓▓░░░
|
||||
░▓ ░▓▓▓▓██░░░██▒██▒░ ░ ░░
|
||||
▒ ▓ █░▓██▓▓██░▓▒▒██░ ░█░
|
||||
▒ █▒░▒█ ░ ▒█▓█▒░▒▓█░
|
||||
▒ ▒██▒ ░ ▓▓▓
|
||||
▒▓█▒░░▓ ▒▒ ▒▓▓▒█
|
||||
▓▓██▒▒ ░░▓▒▒▓░▒▒▓░
|
||||
█▓▒██▓▒▒▒▒▒██
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_25.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_25.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒█▒█▓████▒
|
||||
█ ███░▒▓▒░█░░█
|
||||
▓░▓▓██ ▓░█▒▒▒░░░▒
|
||||
░██░ ▓ ▒░ ▒░██▒▓
|
||||
█▒▒▒█▓█▒▓▓▒░ ░▓▓▒▓█
|
||||
▒█░░░▒██▓▒░▓ ▓░█░▓▓░█
|
||||
░▓░█░ ░▒▒▓▒▒▓░▒▓▒ ░▒░
|
||||
░░░▓░▓ ░▒▒▒▓░▒▒░▒░░▒
|
||||
▒█▒░ ░▒▒▒▒▒▒█░░▒▒░██░▒
|
||||
▓▓ ░▓░█░▒░░▓█▒░▒█▒▓▒░
|
||||
▒░█▓▒░░ ██▓░▒░▓░░
|
||||
░▒ ░▓█▓▒▓██▓▒▓█▓▓░▓
|
||||
▒░▒░▒▒▒█▓▓█▒▓▒░░▓
|
||||
▒▓▓▒▒▒█▒░██ █░█
|
||||
░█ █▒██▒█░█
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_26.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_26.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▓███ ██
|
||||
▓█░▓▓▒░█▓░█
|
||||
▓█ ░▓▒░▒ ▒█
|
||||
▓█ █░░░▒░░▒█▓▒
|
||||
░▒█▒░▓░ █▒▓▓░▒▓
|
||||
▒ ░▓▓▓ █▒▒ ▒▒▓
|
||||
░ ██▒░░▓░░▓▓ █
|
||||
▓▓ ▒░░░▒▒▒░░▓░░
|
||||
░ ▓▒█▓█░█▒▒▓▒░░
|
||||
▓▒░▓█░▒▒██▒▒█░
|
||||
░░ ▓░█ ▒█▓░█▒░░
|
||||
▒▒░░▓▒ ▓▓ ░░░
|
||||
█ █░▒ ▒░▓░▓█
|
||||
░ █▒▒ █▒██▓
|
||||
▒▓▓▒█░▒▒█
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_27.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_27.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▓█████
|
||||
░▓▓▓░▓▒
|
||||
▓█░ █░▓█░
|
||||
░░░▒░░▓░░
|
||||
░ ░░▒▓█▒
|
||||
░▒▓▒ ░░░░░
|
||||
▒ ░░▒█░░
|
||||
░ ░░░░▒ ░░
|
||||
░▓ ▓ ░█░░░░
|
||||
█▒ ▓ ▒░▒█░░
|
||||
░▓ ▒▒███▓█
|
||||
░░██░░▒▓░
|
||||
░▒▒█▒█▓░▒
|
||||
▒▒▒░▒▒▓▓
|
||||
█▒ ▒▒▓
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_28.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_28.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▓██▓
|
||||
░█▒░░
|
||||
▒ ▓░░
|
||||
░▓░█░
|
||||
░ ░░
|
||||
░ ▓ ░
|
||||
▒░░ ▒░
|
||||
░▓ ░
|
||||
▓▒ ▒░
|
||||
░░▓▓░░
|
||||
░ ▒░
|
||||
░▒█▒░
|
||||
░▒█░░
|
||||
█▒▒▓░
|
||||
░ ▓█░
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_29.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_29.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
██████
|
||||
█░█▓ █▒
|
||||
▒█░░ █ ░
|
||||
░░░░▒▒█▓
|
||||
▒ ░ ░ ░
|
||||
░█░░░ ▒▒
|
||||
░▒▒░░░ ▒
|
||||
░░▒░░
|
||||
░░░█░ ░
|
||||
▒░▒░░ ░
|
||||
█░░▓░▒ ▒
|
||||
░▓░░░ ▒░
|
||||
░░░░░░▒░
|
||||
░▒░█▓ ░█
|
||||
░░█ ▓█
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_3.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_3.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▓▒▓██▒▒▒▒█▒
|
||||
▒██▓▒░░█░ ▒▒░▓▒▒░██▒
|
||||
█▓▓█▓░█ ░ ░ ░ ███▓▒░█
|
||||
▓█▓▒░▓██▒ ░▒█ ░░▒
|
||||
█▓█░▓▒▓░░█▒▒ ▒▒▒░░▒
|
||||
▓░▒▒▓ ▓█░▒▓▒▒ ░ ▒▒░
|
||||
▒█ ░ ██▒░▒ ░█ ▓█▓░█
|
||||
█▓░█░ █▓░ ▓▒░ ░▒░▒░
|
||||
▓ █░ ▓░██░░█▓░▒██▒▒▒██▒░▒ ▓░
|
||||
█▒▓▒█ ▓▓█▓▓▓░ ░█░▒▒█ ▒▓█▓▒░░▒░░
|
||||
█▒░ ░ ░░██ ███ ███▓▓▓█▓
|
||||
██░ ▒█ ░ ▓▒█▒▓▓
|
||||
▒▒▓▓█▒█ ██▓▓ █░█
|
||||
▒▒██▒██▒▒▓▒▓█▓▒█▓░▒█
|
||||
░███▒▓░▒▒▒▒░▓▓▒
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_30.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_30.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▓ ████
|
||||
▒▓▓░░▒██▒▒
|
||||
█▒░█▒▒░██▒
|
||||
░░▒░▓░▒▒░▒ ▒█
|
||||
▒█░░░▒░█░█ ░
|
||||
░█░▒█ █░░░░▓░
|
||||
▒▓░░░▒▒ ▒▓▒░ ▒░
|
||||
░ ██▒░█░ ░▓ ░
|
||||
░▒ ▒░▒░▒▓░█ ░
|
||||
░░▒░▒▒░░ ██ ░
|
||||
▒░░▓▒▒█░░░█░░
|
||||
░█▓▓█▓█▒░░ ░
|
||||
▒░▒░░▓█░░█░▓
|
||||
█▒██▒▒▓░█▓█
|
||||
▒▓▓░▒▒▒▓█
|
||||
░░░░
|
||||
17
codex-rs/tui2/frames/blocks/frame_31.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_31.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▓▓████▒█
|
||||
▒██▓██▒ █▒███
|
||||
█░▒▓▓█▒▒░▓ ░▒█▒
|
||||
█░▓█▒▒█▓▒█▒▒░▒░░▒
|
||||
▒░░░░█▓█▒▒█ ▒░▓▒▒
|
||||
▓░▒░░▒░█ ▒▓██▓▓░█ ░
|
||||
▓░░ ░▒█░▒▓▒▓▓█░█░▓░
|
||||
▒▒█ ░░ ░▒ ░▒ ░░▒▓░
|
||||
░▒█▒░█▒░░░▓█░░░▒ ░
|
||||
░░░▓▓░░▒▒▒▒▒░▒░░ █
|
||||
▒█▒▓█░█ ▓███░▓░█░▒
|
||||
░░░▒▒▒█ ▒▒█ ░
|
||||
▓░█▒▒ █ ▓ ░█░▓░
|
||||
▓░▒░▓▒░░█░ █░░
|
||||
█ ▒░▒██▓▓▓█
|
||||
░░░░
|
||||
17
codex-rs/tui2/frames/blocks/frame_32.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_32.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
█████▓▓░█▒
|
||||
▓█░██░▒░░██░░█
|
||||
▓▒█▒▒██▒▓▓░█░█▒███
|
||||
█▓▓░▒█░▓▓ ▓ █▒▒░██ █
|
||||
▓▓░█░█▒██░▓ █░█░▒▓▒█▒█
|
||||
▒▓▒▒█▒█░░▓░░█▒ ░█▓ █
|
||||
█░ ▓█░█▒░░██░█▒░▓▒▓▓░█▒
|
||||
░░░█▒ ▒░░ ▓█░▓▓▒ ▒░ ░
|
||||
▒░░▓▒ █▒░ ▒▒░███░░░▒░ ▒░
|
||||
█ ▒░░█▒█▒▒▒▒▒▒░░█░▓░▓▒
|
||||
█▒█░░▓ ░█ ███▒▓▓▓▓▓▓
|
||||
▒█░▒▒▒ █▒░▓█░
|
||||
███░░░█▒ ▒▓▒░▓ █
|
||||
▒▓▒ ░█░▓▒█░▒█ ▒▓
|
||||
░▓▒▒▒██▓█▒
|
||||
░░░
|
||||
17
codex-rs/tui2/frames/blocks/frame_33.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_33.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒██▒█▒█▒░▓▒
|
||||
▒██░░▒█▒░▓░▓░█░█▓
|
||||
▒▓▒░████▒ ░ █▓░░█ █
|
||||
█▒▓░▓▒░█▒ █░░▒▒█
|
||||
▒▓░▓░░░▓▒▒▒ ░█▒▒▒
|
||||
▓▓█ ▒▒▒▒░▒█ ▓▒▓▒▒
|
||||
░░█ ▒██░▒░▒ ░█░░
|
||||
█░██ ███▒▓▒█ ▒ ░█
|
||||
░░░ ░ █░ ▓████▓▒▒█░░█▓▒░▒░
|
||||
▒▓░█ ▓▓█▓░░░▒▒▒▒▒░░█▒▒▒░░▓
|
||||
▒▒▒█ ░▓░▓ ▓ ███ ░░█▓▒░
|
||||
▒█▒██ █ ▓▓▓▓▒▓
|
||||
█▒ ███▓█ ▒█░█▓█▒█
|
||||
▒░ █▒█░█▓█▒ ▓█▒█░█
|
||||
▒▒██▒▒▒▒██▓▓
|
||||
░░░░
|
||||
17
codex-rs/tui2/frames/blocks/frame_34.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_34.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒█▒████▒░█▒
|
||||
▒███▓▒▓░ ░██▒██▓█▒▒
|
||||
▒▓▓█░█ ▓░█░ ░▒▒▒█ ███
|
||||
█▓▒░█▒▓█▒ █░██▒▒
|
||||
▓▓░▒▓▓░ ░ █ ▒▒█▒▒
|
||||
█▓▒░░▓ ▒▒ ░▒█▒ ▒█▒░▒
|
||||
░█▒░▒ █▒▒█░▒▒ ░▓░▒
|
||||
▒░▒ ▓ ░█▒░▓ ░ ▓ ▒▒
|
||||
██▓▓ ▓▒▓▓ ▒▒▒██████░▒▒ ░▒░
|
||||
░░▒█▓██▒ ▓▓█░░░▒░▓▒▒▒█▓▒░░░░▒
|
||||
▓▒▒█ ░▒░█▒ ██░░░░▒ █▓█▒░█
|
||||
▓█▒▓▒▒▒ ▓▓▓░▓█
|
||||
▒█░░█▒▓█ ▒█▒ ▒▓█░
|
||||
▓▒▓░ ░██▓██▒█▒█░██▓█
|
||||
░▒▓▒▒▒▒▒▒▓▒█▒▒
|
||||
░░░
|
||||
17
codex-rs/tui2/frames/blocks/frame_35.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_35.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒██▓▒███▒██▒
|
||||
██▒█▓░███ ░█░▓ ░█▒▒
|
||||
▒▓▓░▓██░▒█ ░ ░ █▒█▓ ░██
|
||||
█▓▓█▓█▓█▒ ██▒▒░▒
|
||||
▓▓░░▓▓▒ ▒██ ░▒█░█
|
||||
▓▓▓▓█░ █░▒ ▓▓█▒ ░▒▒░
|
||||
▒ ▓▓ ▒▒ ██▒▓ ░▒▒▒
|
||||
░░░▓ ▓▒▒▓▓█ ▓ ▓
|
||||
▓ █▒ █░░▓▓ ▓░▒▒▒▓▒▒█░░ ░░▒█
|
||||
░█▒▓█ ▓▓▓ ██▓░▓ ▒█▒▒▒▒▓ ░▓█ ░█
|
||||
▓░▒██▓▒▒░▓▒░ ░ ▒▒▒▒█▒▒█▓▓▒█░
|
||||
▓▒▒▓░ ▒▓█ █▒
|
||||
▒▓░▒▓█▓█ █▓▓▒███
|
||||
▒▒ ░█░▓▓░░█░▓▓█ ▒▓▓
|
||||
▒░▓▒▒▒▓▒▒███ ▒
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_36.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_36.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▒█▒████▒██▒
|
||||
▒▒ ▒█▓▓▓█▒█▓██ ███▒
|
||||
█▒█▒███▓█ ░░ ░ █░██░██░█
|
||||
▒░ ██▒▒▒▒ ██░▒ ░
|
||||
█▓▒▓▒█░▒░▒█▓ ▒▒▓█
|
||||
▓ █▓░ █▒ ░▓█ ▒▒█
|
||||
░ ▓ ░ ▒ ▒▒ ░▒░█
|
||||
░░▒░ ▒▒ ▒▓▓ ▒░ ░
|
||||
░█ ░ ▓▓ ██ ████▒█████▒ ░▒░░
|
||||
▒█░▒ █░▒▒▓░▓ ░░▒▒▒▒▒▒▒░░ ▒▓█░
|
||||
█ █░▒ █▒█▓▒ ██▒▒▒▒▒ ░█ ▓
|
||||
██ ▒▓▓ █▓░ ▓
|
||||
▒▓░░█░█ ███ ▓█░
|
||||
██▒ ██▒▒▓░▒█░▓ ▓ █▓██
|
||||
░██▓░▒██▒██████
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_4.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_4.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▓▒▓█▒▒█▒██▒
|
||||
▒▓ ██░▓ ░▒▒▓█▓░ ▓██▒
|
||||
██▒░░░██ ░ ░▒░▒▒█░▓▒▒▒
|
||||
▓▓░█░ ▓██ ░██▒█▒
|
||||
▓░▓▒░▒░▒▓▒░█ ▒ ▒░█▒
|
||||
▓░░▒░ █▒░░▓█▒ █ ▒▒░█
|
||||
▒░▓░ ███▒█ ░█ █ ▓░
|
||||
░▓▒ █░▓█▒░░ ░░░
|
||||
▒░ ░▒ ▓░▓ ▒▓▓█░███▒▒▒▒██ ░░█
|
||||
░▒▓ ░ █▓▓▓█▒░░▒▒░█▓▒█▓▓▒▓░▓▓ ░
|
||||
░░▓█▒█▒▒█▒▓ ████████▒▓░░░░
|
||||
█░▒ ░▒░ █▒▓▓███
|
||||
▒▒█▓▒ █▒ ▒▓▒██▓░▓
|
||||
░░░▒▒██▒▓▓▒▓██▒██▒░█░
|
||||
█▒▒░▓░▒▒▒▒▒▓▓█░
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_5.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_5.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▓▒▓▓█▒▒▒██▒
|
||||
▒█ █▓█▓░░█░▒█▓▒░ ██
|
||||
█▒▓▒█░█ ░ ▒▒░█▒ ███
|
||||
█░▓░▓░▓▒█ ▓▒░░░░▒
|
||||
█▒▓█▓▒▒█░▒▒█ ░ ▒░▒░▒
|
||||
░░░░▓ ▒▒░▒▓▓░▒ █▓░░
|
||||
░▓░ █ ░▒▒░▒ ░█ ██░█░█
|
||||
░▓░▒ █▒▒░▓▒░ █░▒░
|
||||
░█░▒█ ▓▒░ █░█▒▒░█░▒▒▒██▒ ░▓░
|
||||
▒▒░▒██▓██ ░ ▓▓▒▒▒█▒▓█▓░▓█░░
|
||||
▒█░░█░█▒▒▓█░ ██ █░▓░▒▓
|
||||
▒▒█▓▒▒ ░ ▓▒▓██▒
|
||||
▒▓█▒░▒█▒ ▒▒████▓█
|
||||
▒░█░███▒▓░▒▒██▒█▒░▓█
|
||||
▒▓█▒█ ▒▒▒▓▒███░
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_6.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_6.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▓▒▓▓█▒▒██▒▒
|
||||
█▒▓▓█░▒██░██▓▒███▒
|
||||
███░░░█ ░ ░▓▒███▓▒▒
|
||||
▓█░█░█▒▒█ ▒█░░░░█
|
||||
█▒░░░█▒▒██▒ ▓▒▒░▒█
|
||||
▓▓▓░▓░▒█▓░▒▒░█ ▓▒▒▓░
|
||||
▒ █░░ ▒▒░▓▒▒ ▒█░▒░
|
||||
░ ░░░ ▒░▒░▓░░ ░█▒░░
|
||||
▒▓░▓░ ▓█░░█▓▓█▒░█░▒▒██▒▓▒▓░
|
||||
░░▒█▓▒▒▒▓█ ░▓▒██░░█▓▒▒▒░█░▒
|
||||
▓ ░ ▓░░░▓▓ █ ██ ░▒▒▓░
|
||||
█ ▓ ▓█░ █▓▒▓▓░░
|
||||
▓░▒▒███ ▒█▒▒▓███
|
||||
░ ░██ █ ▓░▒▒████ ▓▓█
|
||||
▒▓▓███▒▒▒░▒███
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_7.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_7.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▓░▓██▒▒██▒
|
||||
██░█▒░███▒▒▒▓ ░██
|
||||
█ █░░░█░ ░▒░░ █▓▒██
|
||||
▒▒░░░░▓█ ▒░▒█░▓█
|
||||
░█░█░░▒░▓▒█ ▓ █░░▒
|
||||
░ ▓░░ ░█▒▓░▒ █▓░░░
|
||||
░▒ ░ ▒▒░▒░▒░ ██▒░░
|
||||
▒ ▓░░ ▒█▓░█░░ █ ░░░
|
||||
▓ ░█ █ ▒▓░▒▓░░▓▓▒░░▒▓█▒░░
|
||||
░██░░▒▓░░▓█░▓▒░░▒▒█▒█▓▒░▒░
|
||||
▒ ▒▒▓█░█▒▓ ██████ ▒▓░░
|
||||
█▒ ▓▒▓▒░ █ ▓▓▓▓█
|
||||
█▓██▒▒▒▒ █▒░██▓██
|
||||
▒▒█▒░█▒▓░▒▒▒██░██▓
|
||||
░█ ░▓░▒▒█▒▓██
|
||||
|
||||
17
codex-rs/tui2/frames/blocks/frame_8.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_8.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▒▒█▒▓██▒██▒
|
||||
█ █▓░░░█▒▒ ░ █
|
||||
▒░▒█░▓▓█ █ ░▓░█▒█▒█
|
||||
▒█▒█▓░██░ █ ▒▒░░▒
|
||||
█ ▓░▓█▒░▓▒ ▓█▒░░█
|
||||
░██░▒▒▒▒▒░▒█ ▒█░░░
|
||||
░█░░░ █▒▓▒░░░ ░▒░▓░█
|
||||
▒█░░▓ ░█▒▓░██▓ ▓░▓░░
|
||||
▒ ▒░░▒▒ ▓█▒░░▓█████▒░░░
|
||||
▒█▓▒▒░ █░█░░▓░▒▒▒░░▒█
|
||||
▓▓▒▒░▒░░░▓█▒█▒█ ▒█ ▓▒░
|
||||
██ ░▒░░░ ▓█▓▓▓█
|
||||
█▒▒█▒▒▒▒ ▒▓▒▒░█▓█
|
||||
▓▓█░██ ▓▓██▓▓▒█░░
|
||||
░░▒██▒░▒██▓▒░
|
||||
░░
|
||||
17
codex-rs/tui2/frames/blocks/frame_9.txt
Normal file
17
codex-rs/tui2/frames/blocks/frame_9.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
▓▒▒█▓██▒█
|
||||
▓█▒▓░░█ ▒ ▒▓▒▒
|
||||
▓ █░░▓█▒▒▒▓ ▒▒░█
|
||||
░░▓▓▒▒ ▒▒█░▒▒░██
|
||||
▓█ ▓▒█ ░██ █▓██▓█░░
|
||||
░ ░░░ ▒░▒▓▒▒ ░█░█░░░
|
||||
░ ░█▒░██░▒▒█ ▓█▓ ░░░
|
||||
░ ░▓▒█▒░░░▒▓▒▒▒░ ░░
|
||||
█░ ▓░ ░░░░█░░█░░░
|
||||
░▒░░░▒█░▒░▒░░░░▒▒░░░
|
||||
░▒▓▒▒░▓ ████░░ ▓▒░
|
||||
▒░░░▒█░ █▓ ▒▓░░
|
||||
▒█▒░▒▒ ▓▓▒▓░▓█
|
||||
▒▓ ▒▒░█▓█▒▓▓█░░
|
||||
█▓▒ █▒▒░▓█▓
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_1.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_1.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eoeddccddcoe
|
||||
edoocecocedxxde ecce
|
||||
oxcxccccee eccecxdxxxc
|
||||
dceeccooe ocxdxo
|
||||
eedocexeeee coxeeo
|
||||
xc ce xcodxxo coexxo
|
||||
cecoc cexcocxe xox
|
||||
xxexe oooxdxc cex
|
||||
xdxce dxxeexcoxcccccceco dc x
|
||||
exdc edce oc xcxeeeodoooxoooox
|
||||
eeece eeoooe eecccc eccoodeo
|
||||
ceo co e ococex
|
||||
eeoeece edecxecc
|
||||
ecoee ccdddddodcceoxc
|
||||
ecccxxxeeeoedccc
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_10.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_10.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eccccecce
|
||||
ccecccexoeco
|
||||
eeoxxoxxoxceoo
|
||||
xeeoexdeoeocceeo
|
||||
o dxxcxe cooeoxo
|
||||
xe cxcxooe eecx
|
||||
e xcccxxxxc xoo
|
||||
c xxecocxxoeeoexx
|
||||
c xe eexdxxcecdxx
|
||||
x oxeoxeoeceeexce
|
||||
o cxxxxxcc eocexe
|
||||
eecoeocc exccooo
|
||||
xc xxxxcodooxoe
|
||||
deccoxcde ooc
|
||||
co eceeodc
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_11.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_11.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
occcccce
|
||||
oc dxxxeeo
|
||||
oceexxdecoeo
|
||||
xeexxddoedoo
|
||||
ecodexcecdexxo
|
||||
xcexxceddxeoxx
|
||||
cc oxxxxxxexde
|
||||
x xxoxxeo xcx
|
||||
o cxoxxcocxex
|
||||
cc exodocoxexe
|
||||
ceo xxxxdoxeex
|
||||
eeooxecoccdxe
|
||||
e cxeeeexdc
|
||||
ec cxxoeoce
|
||||
ee cccece
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_12.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_12.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
ccccco
|
||||
odeeoxoe
|
||||
c xoeco
|
||||
ocxxxddcx
|
||||
x cxxxxoox
|
||||
xcoocecexc
|
||||
x xoexxe
|
||||
x ocexxc
|
||||
co xoxxcxx
|
||||
x oxcdce
|
||||
xo xcdcco
|
||||
o cx eox
|
||||
o ccxocex
|
||||
ceocoxexe
|
||||
e cxeoo
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_13.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_13.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
occco
|
||||
xeexx
|
||||
xeexc
|
||||
xccxe
|
||||
c xx
|
||||
cdoxx
|
||||
o xx
|
||||
c cx
|
||||
oc exo
|
||||
xc cdx
|
||||
ceoo xe
|
||||
xeeex
|
||||
xcoxe
|
||||
ceexd
|
||||
o ocd
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_14.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_14.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
ccccd
|
||||
ooeeoe
|
||||
xexxo x
|
||||
xxoxcexo
|
||||
xxxe x
|
||||
xcxx cx
|
||||
xxxx o c
|
||||
xxexe e
|
||||
xxxx c
|
||||
ceoo do
|
||||
exccooox
|
||||
xcxxeeex
|
||||
o cxddde
|
||||
xeoceeo
|
||||
ec cdo
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_15.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_15.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
cccccxe
|
||||
eodxxedco
|
||||
ooxcdexccx
|
||||
xoe ooooeex
|
||||
xxdcdexxocex
|
||||
exxoxxoox c
|
||||
xx xxxxxxox
|
||||
xxoxxcxxx cox
|
||||
xxcoocxxxeodx
|
||||
xexdoxexco ox
|
||||
xoxxxxex e d
|
||||
xccoexxeo d
|
||||
cxeo oooe de
|
||||
xexxeeoceo
|
||||
eeceeeeo
|
||||
ee
|
||||
17
codex-rs/tui2/frames/codex/frame_16.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_16.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
edcccccxe
|
||||
oexxcxxexde
|
||||
xooceodexx ce
|
||||
ooo dceexexxccx
|
||||
xxdeoccdxxcoxee
|
||||
xxxcxc xed x xox
|
||||
eex oeoxxxxocco x
|
||||
xod xexxoxxxcd ex
|
||||
eexxxcxoexxccc o
|
||||
cceeoddecxoex oex
|
||||
xxxcccocexdcdoxxe
|
||||
xxc xe eooo o
|
||||
exc x oooeox
|
||||
exxcecxoocex
|
||||
cdoeddeedc
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_17.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_17.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
odcccddxoe
|
||||
edccxxxcdcxoceo
|
||||
oceoeddecocxxxece
|
||||
oxoeoxcee cxdexxxde
|
||||
xoe x xcoedeoo o
|
||||
edcooe odox oodoxoo
|
||||
c dox oooxe ccxxodx
|
||||
ocdx ooxxoxoxxddc
|
||||
oocoeddcxeexeedexxx x
|
||||
xcedeexoceoxxe eccce
|
||||
eeeoccccccceexcooe ec
|
||||
exxec eoxxe d
|
||||
eee cee ocooeeo
|
||||
o xccdeceedcdxc
|
||||
ecdoeocxcecc
|
||||
e
|
||||
17
codex-rs/tui2/frames/codex/frame_18.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_18.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eddcddcdxoe
|
||||
eccedoccxeeoccdde
|
||||
eodxcccdcocoeccooe c
|
||||
oxxcooecc ceeeodxedeeeo
|
||||
eeoo ox ecceeoxoxeedeee
|
||||
oex ooxoeeeoocoxcooeoeox
|
||||
xxedo cocoxceoccxdxdo
|
||||
ceoxx eecxxde xdxc
|
||||
ecc oedddddcxxoxcoeo xcxe
|
||||
eeexcec xxoeeeexxxedxee o
|
||||
xoxeeccccccce eeeoxocoeoe
|
||||
ee oeo eeccocec
|
||||
eecceeo eceeoeoe
|
||||
cxoccccdddecceoeoc
|
||||
cxxeoeeooccdcc
|
||||
e
|
||||
17
codex-rs/tui2/frames/codex/frame_19.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_19.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eeddcxcddxoe
|
||||
ecxxxeodddeceoxcoo
|
||||
ocddocxcce ecdoecde
|
||||
odxcoee eddcoexco
|
||||
xxoeoe oxecocxe xeo
|
||||
xeocc excxo oo cocx
|
||||
edxxc oceoxcoe odocx
|
||||
xxxx xdcexco x xxx
|
||||
xcxeoddddddxxxxccdcxd e cxx
|
||||
edooxdcoecceoeo ee deeeoooxe
|
||||
cecocxcccccccc eeeoxoo ooc
|
||||
eeecee eooeooc
|
||||
c eexxco oddooxde
|
||||
ccoxcoxceeddocc dcxc
|
||||
cxoedoceooecoe
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_2.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_2.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eoeddcdddcoe
|
||||
ecoocdcxxxdxxdecxcce
|
||||
oxcxeccxcee eccdcoxxdxo
|
||||
exoeoccooe ooexoxo
|
||||
oecocexeeeee eoxexo
|
||||
cocce xcecoec eexcx
|
||||
oxccx eoxdxexo ocxcx
|
||||
xc ee oxcxxdc xcoox
|
||||
cccdx dxeeexcoxccccccccoxexxc
|
||||
edcx oxxc oc xdeeeeeooeexco x
|
||||
eee c ceooxc ecccccccccxocxx
|
||||
ceeooo e ocdooc
|
||||
oeeexco odec exc
|
||||
exedeecccdddddodceexxc
|
||||
eccccxxeeeexdocc
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_20.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_20.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eecdxxdcdoee
|
||||
oddcdoeodddxxeececo
|
||||
oocecccxcc ecececcxce
|
||||
excecxc eocxeocee
|
||||
ex oxc eo exxecexxe
|
||||
oeoxc cccdxco cexxe
|
||||
dxdcx oc occe oexo
|
||||
xeeoe ccddxco xxcx
|
||||
xoxxdoddddddddeocdeeeec o xe
|
||||
cxexec oeeeeeexe ceecxde oo xx
|
||||
eoeecccccccccc eodxxox oe
|
||||
c ecoo eocoxo
|
||||
eeecoxe odcedcc
|
||||
eooocxceddodcxceoocc
|
||||
eccxe deeeexccc
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_21.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_21.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eeodcddcdcoee
|
||||
occeeeecxdxcdeeocce
|
||||
dceeccece eexcceeco
|
||||
ocxdcc eodcodco
|
||||
oooce oxoee eeeeo
|
||||
ocox occeoo eeeo
|
||||
xcxe e oeooc edec
|
||||
ee ed cxo x x
|
||||
x x ocdddddccc exocxo do x
|
||||
x xe xe eox ececxo ocoo
|
||||
d co eeccc ce cceod oe o
|
||||
cc dde ecc o
|
||||
ce eoe eodcc oe
|
||||
cde ccccdxxdddccc oe
|
||||
cccdceeeeoedcce
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_22.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_22.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eocdcddcdcoe
|
||||
ecocxoeoxoexxdxcocce
|
||||
odcdxecce ecceccceeco
|
||||
dcxccc ooxxxece
|
||||
exxoc oeoxdxoodcx
|
||||
excoe oxoxdeoe exedx
|
||||
xcceo xcxecoc xxox
|
||||
xxdxe xexxee xexcx
|
||||
xxoco cxddddddcceecxe eo exdc
|
||||
exd ceeeo oocxoox ecdecxoo oed
|
||||
eeeex cccccccce edcceooocoe
|
||||
eceeeo ecocxoc
|
||||
cccd cce eococceo
|
||||
cdccoccxddcddodccccoc
|
||||
cxcxedeeeodeodce
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_23.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_23.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eocedccccdcee
|
||||
edxcxeeoeddoxexcxce
|
||||
occxcodce cxdcxedxxo
|
||||
odxcdoe eddexxde
|
||||
ooxeoc ooooccocexe
|
||||
oexcoe ecccccoccxxexo
|
||||
exxcx odoo exe c xcc
|
||||
xox x xcxoeeo x cox
|
||||
ece xcxddddddddxecxecee x xxx
|
||||
xeeexcdc oee exeeox eex
|
||||
ocx x eccccccc ceoddxeoeoe
|
||||
oxxexo ooxeeoe
|
||||
e xocoee eocdcoco
|
||||
edecdccexddecccoecce
|
||||
cx cdexeeceecce
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_24.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_24.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
exedcccddoe
|
||||
oceocxeexddcoecc
|
||||
occdeoccx oedcxcco e
|
||||
ocooooxdoeexoe ecexeec
|
||||
o ooeoo eccoeexeeexoc
|
||||
xoecee cooo oxd oce
|
||||
x xx ooeoocoeexeexe
|
||||
x exx xodoeexxeooexx
|
||||
xo xddddccxxxccecoex x xx
|
||||
e o cxoooddooxoeeccx xcx
|
||||
e cexeccccccce eoocexdooe
|
||||
e eoce x codo
|
||||
eoceexo edceodec
|
||||
oocoeecxxddddxeeoe
|
||||
cdeccdeeeddcc
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_25.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_25.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
ecdcdcccce
|
||||
o coceedexcxxo
|
||||
oxoooocoxcedexxxe
|
||||
xccx o dx cexoceo
|
||||
oeeeoocedoexc xooeoc
|
||||
eoxxxeccoexd oxoxooxo
|
||||
xoxcx xeeoeeoxeoecxdx
|
||||
xxxoxoc xedeoxeexdxxe
|
||||
ecexcxeeddddcxxeexccxe
|
||||
oocxoxoxexxdcexecdoex
|
||||
excoexecccccccoxexoxe
|
||||
xecxdcdeoocdeooooxo
|
||||
eeexeeecdooeoexxo
|
||||
eodeeecdxcc cxc
|
||||
xoccecoecxc
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_26.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_26.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
edccccco
|
||||
ocxdoexcdxo
|
||||
occcxdexecceo
|
||||
dccoxxxexxecoe
|
||||
xeoexoxcceodxed
|
||||
e cxodocceeceeo
|
||||
x ccdxxoxxddcc
|
||||
oo exxxeedxxoxx
|
||||
x oecdcxcddoexx
|
||||
oexooxeeoceecx
|
||||
xecoxcceooecexx
|
||||
eexxoe oocxxe
|
||||
c cxe eeoxoo
|
||||
xcceecceccd
|
||||
eodecxeec
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_27.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_27.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
dcccco
|
||||
xddoxoe
|
||||
dce cxocx
|
||||
xxxexxdxx
|
||||
x exeocd
|
||||
xeoecexxxe
|
||||
d cxxecxx
|
||||
x exxxdcxx
|
||||
xo o xcxxxx
|
||||
cd ocexecxx
|
||||
xo eecccoc
|
||||
xxccxxeox
|
||||
xddcdooxe
|
||||
eeexedoo
|
||||
cec eeo
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_28.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_28.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
occd
|
||||
xcexe
|
||||
d dxe
|
||||
xoecx
|
||||
x xx
|
||||
x ocx
|
||||
exx ex
|
||||
xoccx
|
||||
oe ex
|
||||
xxodxx
|
||||
x ex
|
||||
xdcdx
|
||||
xdcxx
|
||||
ceeox
|
||||
x ocx
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_29.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_29.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
ccccco
|
||||
oxco ce
|
||||
eoxx ccx
|
||||
xxxxeeoo
|
||||
e xcx x
|
||||
xoxxx ee
|
||||
xeexxx e
|
||||
xxdxx
|
||||
xxxcx e
|
||||
exdxx e
|
||||
cxxoxe d
|
||||
xoxxx ex
|
||||
xxxxexex
|
||||
xdxcocxc
|
||||
xxc oo
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_3.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_3.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eoddccddddoe
|
||||
ecooexxcxcddxdeexcce
|
||||
odocdxccce ecx cccoexo
|
||||
ocoexdoce edc xxe
|
||||
cocxoeoxxcee eeexxe
|
||||
oxeeo ooxedee x eex
|
||||
dc x ccexecxo ocoxo
|
||||
ooxox ooxcoex xexdx
|
||||
occx dxccxxcoxdcceeeccexecdx
|
||||
oedeo oocoddx xcxeeo doodeexexe
|
||||
cex x cxxcoc cccccccccoooooo
|
||||
ccx ec e oeceoo
|
||||
deooceo ocdocoxc
|
||||
decoecceddddoddcdeecc
|
||||
ecccedxeeeexdoec
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_30.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_30.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
edcccco
|
||||
eodxxeccde
|
||||
ccexoeexcoe
|
||||
xxexoxeexe eo
|
||||
dcxxeexoxo x
|
||||
xcxec cxxxxox
|
||||
eoxxxee eoex de
|
||||
cx ccdxoxcxo e
|
||||
cxecexdxeoxo e
|
||||
cxxexeexx co e
|
||||
exxdeecxxxcxx
|
||||
xcoooocexxc x
|
||||
exexxocxxoxo
|
||||
oeocdeoxooc
|
||||
eooxeeedc
|
||||
eeee
|
||||
17
codex-rs/tui2/frames/codex/frame_31.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_31.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eodccccdo
|
||||
eccdcoeccecco
|
||||
oxeooodeeocxece
|
||||
oxoceecdeoeexexxe
|
||||
exxxxcoceeocexoee
|
||||
dxeexexccedcoooxocx
|
||||
oxx xecxeododcxcxox
|
||||
eeo xxcxe xeccxxeox
|
||||
xeoexcexxxocxxxe x
|
||||
cxxxooxxeeeeexexx c
|
||||
eceocxo occceoxcxe
|
||||
xxxeeeo edc x
|
||||
dxcde o o xceoe
|
||||
dxexoexeoxcoxe
|
||||
ccdxeccoodc
|
||||
eeee
|
||||
17
codex-rs/tui2/frames/codex/frame_32.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_32.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
occccddxoe
|
||||
dcxccxexxccxxo
|
||||
oecdeocedoecxcecco
|
||||
cooxeoedo o oeexco o
|
||||
ooxoxceccxd ceoxeoeceo
|
||||
eoeeoecxedxxce xco c
|
||||
cxcdoecexxooxodeoeooxce
|
||||
xxxoe cexxcocxdoecexcce
|
||||
exxoe cexceexcccxxxdxcde
|
||||
ccceexceceeeeeexxcxdxoe
|
||||
oecxxo xccccccedooooo
|
||||
eoxeee oexocx
|
||||
cccxxxce eoexo o
|
||||
eoecxcxddceecceo
|
||||
xddeeococecc
|
||||
eee
|
||||
17
codex-rs/tui2/frames/codex/frame_33.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_33.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eocdcdcdxoe
|
||||
eccxxecdxdxoxcxco
|
||||
eoexcccodce ccoxxcco
|
||||
oeoxoexoe cxxeec
|
||||
eoxoexxoeee xceee
|
||||
ooo eeeeeeo oeoee
|
||||
xxc eocxexe xcxx
|
||||
cxoo occeodo ecxc
|
||||
xxx x oe ocooodddcxxcoexex
|
||||
eoxccodooexxeeeeexxceeexxo
|
||||
edeo xoxo o ccccccc xxooee
|
||||
ececoco oododo
|
||||
ceccocdo ecxoocec
|
||||
exccecxodcecdoecxc
|
||||
cddcoeeeeccdoc
|
||||
eeee
|
||||
17
codex-rs/tui2/frames/codex/frame_34.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_34.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eodccccdxoe
|
||||
ecccoedxcxccdccdode
|
||||
eoooxccdxce eeeeoccco
|
||||
ooexceooe cxocee
|
||||
ooxeoox xc o eecee
|
||||
ooexeo eecxece eoexe
|
||||
xcexe ceecxee xdxe
|
||||
exdcd xcexocx o ee
|
||||
ocooc oeooceddccccccxeec xee
|
||||
xxeooooecoocxxxexoeeeooexxexe
|
||||
oeeo xexce ccceeeee oooexc
|
||||
ooeddee odoxoc
|
||||
ecexcedo ecdceooe
|
||||
oeoxcxcodocdcdceccdc
|
||||
cxeddeeeeeddcde
|
||||
eee
|
||||
17
codex-rs/tui2/frames/codex/frame_35.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_35.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eocddcccdcoe
|
||||
ocdcoxccccxcxdcxcde
|
||||
eooxdccxecce eccdcocxco
|
||||
ooocoodoe cceexe
|
||||
ooxxooe ceco xecxo
|
||||
dodoce cxecooce xeex
|
||||
e oo ee cceo xeee
|
||||
xxxd oeedoc o co
|
||||
o oe oxxodcoxddededcxx xxdc
|
||||
xoedc oodcccoxd eoeeeeocxoc xc
|
||||
oeeocoeexoee eceeeeceecooeox
|
||||
coeeox eoc oe
|
||||
edeedodo odoeccc
|
||||
ceecxcxodxxcxdocceodc
|
||||
cexddeeoeecccce
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_36.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_36.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eecdccccdcoe
|
||||
edccecodocecdcccccce
|
||||
oeceoccoccee eccxccxocxo
|
||||
exccceeee ccxecx
|
||||
ooedecxeeeoo eeoc
|
||||
o ooe ce cxoo ceec
|
||||
x d e e cee xexo
|
||||
xxex ee eoo ex x
|
||||
xccx oo occcocceccccce xexx
|
||||
ecxe oxeeoxo exeeeeeeexx eoce
|
||||
c cxe cecoe ccceeeeec xoco
|
||||
cocedo ooxco
|
||||
eoxxcxo occcooe
|
||||
coecccdedxecxdcocodcc
|
||||
eccoxeooeooccccc
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_4.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_4.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eoddcddcdcoe
|
||||
eocccxo xedocdxcocoe
|
||||
ocdxxxccce eexeecxoeee
|
||||
ooxoxcoco cxccece
|
||||
oxoexdxedexo ecexce
|
||||
oxxex cexxoce c edxo
|
||||
cexde ccceccxo o cdx
|
||||
xoe oxocexx xxx
|
||||
ex xe dxoceoocxccceeeeoo xxc
|
||||
xeo x oooooexedexooeodoedxoocx
|
||||
exdceoeeoeo ccccccccceoxxxe
|
||||
oxecxee oedoccc
|
||||
eeode oe eoeocdxo
|
||||
xxxdecceddddocdccexce
|
||||
ceexdxeeeeedoce
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_5.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_5.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eodddcdddcoe
|
||||
ecccocoxxcxdcdexcco
|
||||
ceoecxcce cedxce oco
|
||||
oxoxoxodo oexxxxe
|
||||
oeocoeecxeeo e exexe
|
||||
xxxxo eexedoxe coxx
|
||||
xox c eeexecxo ccxcxo
|
||||
xoxec oedxoex cxex
|
||||
xoxec oexcoxcdexcxeeecoecxox
|
||||
eexeoooccc xc ooedeodoooxocxe
|
||||
eoxxoxoeeoce ccccccccoxdxeo
|
||||
eecoee e oeocoe
|
||||
eocexdce edcoccdc
|
||||
excxoccedxdeocdcexdc
|
||||
eocecceeeoeocce
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_6.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_6.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eodddcddccee
|
||||
oedocxdccxccdeocce
|
||||
oooxxxcc ecxodcccoee
|
||||
ooxcxcedo ecxxxxo
|
||||
cdxxxceecce oeexeo
|
||||
dooxoeecdxeexo odeox
|
||||
e cxx eexoee ecxex
|
||||
x xxx exdxoxx xcexx
|
||||
eoxox ocxxcdocexcxeecceoeox
|
||||
xxeooeeedc xodcoxxodddexoxe
|
||||
o x oxxxdoc cccccccceeeox
|
||||
o d ooe odeooxe
|
||||
oeeecco eceeococ
|
||||
ecxcocc dxeeoccc ddc
|
||||
eodccoeeeeeocc
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_7.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_7.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eoxdccddcoe
|
||||
ocecexcccdded eco
|
||||
c oxxxce eexe coeco
|
||||
eexxxxdc execxoo
|
||||
ecxcxxexoeo o cxxe
|
||||
x dxxc ecedxe ooxxx
|
||||
eecx eexexex ccexx
|
||||
ecoxx dcoxcxe c xxx
|
||||
ocxc oceoxeoxxddexxddcexx
|
||||
xocxxddxxocxoexxeeododexex
|
||||
e deocxceo cccccccceoxx
|
||||
ce oeoee ocoodoc
|
||||
cdoceeee oexococc
|
||||
eecexcedxeeeccxcco
|
||||
cxccxdxeeoedcc
|
||||
|
||||
17
codex-rs/tui2/frames/codex/frame_8.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_8.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
eecedccdcoe
|
||||
occoxxxcdd x cc
|
||||
exdoxooc ocxoxceceo
|
||||
ececoxocx c dexxe
|
||||
c oxooexoe ocexxo
|
||||
xcoxeeeeexec ecxxx
|
||||
xcxxx cedexex xexoxo
|
||||
eoxxo xceoxoco oeoxx
|
||||
e exxee ocdxxococooexxx
|
||||
ecodexcoxoxxdxdeexxdc
|
||||
ooeexexxxocececceccoex
|
||||
cocxexee oooooc
|
||||
ceeceeee eoeexcoc
|
||||
odcxoc ddccdodoxe
|
||||
xxeccexeocode
|
||||
ee
|
||||
17
codex-rs/tui2/frames/codex/frame_9.txt
Normal file
17
codex-rs/tui2/frames/codex/frame_9.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
odecoccdo
|
||||
oceoxxccd eoee
|
||||
o oxxoceedo eexo
|
||||
c xxodde eeoxeexco
|
||||
occdeccxco coccdcxx
|
||||
x xxxcexedee xcxcxxx
|
||||
e xcexccxeeocooo exx
|
||||
x xoeoexxxeodeex xx
|
||||
coxc oxcxxxxcxxoxxe
|
||||
xexxxeoxexexxxxeexxx
|
||||
c eeoeexocccccxxcoex
|
||||
exxxeoe oo eoxe
|
||||
ecexee odedxoc
|
||||
eoceexcocdddcxe
|
||||
coe ceexdcoc
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_1.txt
Normal file
17
codex-rs/tui2/frames/default/frame_1.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_._:=++==+,_
|
||||
_=,/*\+/+\=||=_ _"+_
|
||||
,|*|+**"^` `"*`"~=~||+
|
||||
;*_\*',,_ /*|;|,
|
||||
\^;/'^|\`\\ ".|\\,
|
||||
~* +` |*/;||, '.\||,
|
||||
+^"-* '\|*/"|_ ! |/|
|
||||
||_|` ,//|;|* "`|
|
||||
|=~'` ;||^\|".~++++++_+, =" |
|
||||
_~;* _;+` /* |"|___.:,,,|/,/,|
|
||||
\^_"^ ^\,./` `^*''* ^*"/,;_/
|
||||
*^, ", ` ,'/*_|
|
||||
^\,`\+_ _=_+|_+"
|
||||
^*,\_!*+:;=;;.=*+_,|*
|
||||
`*"*|~~___,_;+*"
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_10.txt
Normal file
17
codex-rs/tui2/frames/default/frame_10.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_+***\++_
|
||||
*'`+*+\~/_*,
|
||||
^_,||/~~-~+\,,
|
||||
|__/\|;_.\,''\\,
|
||||
/ ;||"|^ /_/|/
|
||||
|` '|*~//\ `_"|
|
||||
\ ~*"*||~|* |/,
|
||||
" ||\+/+||-_ .\||
|
||||
" ~\ \\|;~~+\+;||
|
||||
| ,|\,|_/_*___|*`
|
||||
, "|||||""!\,"\|`
|
||||
\`',\,*" "",//
|
||||
|' |||~*,:,/|/`
|
||||
;`**/|+;_!//'
|
||||
*, _*\_,;*
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_11.txt
Normal file
17
codex-rs/tui2/frames/default/frame_11.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
,****++_
|
||||
/" ;|||\\,
|
||||
/"__||;\*/\,
|
||||
|__||=;,_=//
|
||||
_".;\|+\';_||,
|
||||
|+`||+_;;|_/||
|
||||
** ,||||||_|=\
|
||||
| ||/||\/ |"|
|
||||
/ '|/||*/+|_|
|
||||
** _|/=,"/|_|^
|
||||
'`- ||||=/|\\|
|
||||
\_-/|_*/**;|`
|
||||
!_ *|\\^_|;"
|
||||
\+!*||,_/*`
|
||||
\_ '*+_+`
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_12.txt
Normal file
17
codex-rs/tui2/frames/default/frame_12.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
+***+.
|
||||
,=`_/|,\
|
||||
" |/\+,
|
||||
/+~||=="|
|
||||
| '~|||./|
|
||||
|'..*^"_|"
|
||||
| ~/\||\
|
||||
| /+\||"
|
||||
*, ~/||+|~
|
||||
| /|*;*_
|
||||
|. |"=**/
|
||||
, *|!_,|
|
||||
/ **|,*\|
|
||||
'^/",|\|`
|
||||
\ '~\./
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_13.txt
Normal file
17
codex-rs/tui2/frames/default/frame_13.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
/***,
|
||||
|__||
|
||||
|`_|"
|
||||
|**|_
|
||||
* ||
|
||||
":-||
|
||||
, ||
|
||||
+ "|
|
||||
/+ _~.
|
||||
|" +=|
|
||||
'`.. ~`
|
||||
|___|
|
||||
|+,|_
|
||||
*__|=
|
||||
, ."=
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_14.txt
Normal file
17
codex-rs/tui2/frames/default/frame_14.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
+***;
|
||||
,/__.\
|
||||
|_||. |
|
||||
||/|"^~,
|
||||
|||\ |
|
||||
~*|| '|
|
||||
|||| . *
|
||||
||\|` \
|
||||
|||~ "
|
||||
"^// ;/
|
||||
\|"",.,|
|
||||
|*~|___|
|
||||
/!"|===`
|
||||
|\/*__/
|
||||
_* '=/
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_15.txt
Normal file
17
codex-rs/tui2/frames/default/frame_15.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
++***~_
|
||||
`,=||^:*,
|
||||
//|*=\|"*|
|
||||
|/` //,.__|
|
||||
||="=\||/"^|
|
||||
\||-||//| "
|
||||
|| ||||~~,|
|
||||
||/~|+||| '-|
|
||||
||+,,*|||_.:|
|
||||
|_|;/|\~*. .|
|
||||
|/||||_| ` ;
|
||||
|**.^~|\- =
|
||||
'|\, ///` ;`
|
||||
|^||\\.+\/
|
||||
\^*^___/
|
||||
``
|
||||
17
codex-rs/tui2/frames/default/frame_16.txt
Normal file
17
codex-rs/tui2/frames/default/frame_16.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_=+"**+~_
|
||||
/^||*||\|=\
|
||||
|//"\/=\|| '\
|
||||
/// ;' \|\||**|
|
||||
||;_ =||*/|`\
|
||||
|||*| /|= !| ~.|
|
||||
\\| ,||||/*", |
|
||||
|/; |`||/|||"; `|
|
||||
\\|~|+~/^||"*+ /
|
||||
*"__,==\*|._| ,_|
|
||||
|||+""/*\|;";.~|`
|
||||
||* | `//, /
|
||||
\|* | /,/_,|
|
||||
\|~"_*~//+_|
|
||||
':._=:__;*
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_17.txt
Normal file
17
codex-rs/tui2/frames/default/frame_17.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
,=+++;;~,_
|
||||
_;**|~~*=*|,"^,
|
||||
,*\/_==`+,"|||_"\
|
||||
/|/_/|" |;\~||=\
|
||||
|/_ ~ "/\=\// ,
|
||||
`=*,/` ,:/| /,=/|./
|
||||
*!;/| ,//|_ *"||/=|
|
||||
-"=|! !//||/ ,||=;*
|
||||
,/*/\==+~\_|\^:\||| |
|
||||
|"_;__|/*\/||\!\+'+\
|
||||
\\\/"""****\_|*//\ \'
|
||||
\||_* `/||` ;
|
||||
_\\!*\_ ,',/^_/
|
||||
, ~*+=\+`_;*:|'
|
||||
`+;/_,+~*_+*
|
||||
`
|
||||
17
codex-rs/tui2/frames/default/frame_18.txt
Normal file
17
codex-rs/tui2/frames/default/frame_18.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_==+==+;~,_
|
||||
_+"_;,++~__,"+;;_
|
||||
_/:|*"*=" "._"+//\ *
|
||||
,||*.,^" _/=~\;\\\,
|
||||
_\// /| _\/~/|_\;\\_
|
||||
/\| ,, _/,*,|'-/^/`/~!
|
||||
||\:/ +/*/|"_/"*|=|=,
|
||||
"\-~| ^\"||;^ |;|"
|
||||
\"" ,\==;=;+~|,|*/\, |*|`
|
||||
_\\|*\* ~|/__\_~||_;~`\ ,
|
||||
|/|\`""*****` \__/|/*/`-`
|
||||
\\!,\, ``*"/*_'
|
||||
\^*+^^. _*^_/\,`
|
||||
'|.**++===^'*_/_,*
|
||||
"~|_/__,.+";+"
|
||||
`
|
||||
17
codex-rs/tui2/frames/default/frame_19.txt
Normal file
17
codex-rs/tui2/frames/default/frame_19.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
__==+~+==~._
|
||||
_+|||\/===_*_,|*,,
|
||||
,*;;/"|+*` `*:,`*;\
|
||||
/;|*,^` _==+,^|*,
|
||||
||/`/` ,|^"/"|\ |\,
|
||||
|\/*' _|*~/!./ '.*|
|
||||
^=|~' /*^/|+,` /:/+|
|
||||
|||| |;"\|", | |||
|
||||
|*|\,=;;===~~~|+*;*|; \ "||
|
||||
^;/,|=*/^*+\,`, ^_ :\_\,/.|_
|
||||
'\"/+|"""""**" ^\_/|// //'
|
||||
\\^*_\ `//_//'
|
||||
'!_\~~*, ,;=./|;`
|
||||
'".|*/~+__=;/*" ;*~'
|
||||
"~._:-'_,.^*-^
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_2.txt
Normal file
17
codex-rs/tui2/frames/default/frame_2.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_._:=+===+,_
|
||||
_+,/*;+||~=~|=_'|*+_
|
||||
,|*|\**~*`` `"*=*/||;|,
|
||||
_|/_/*',,_ -,\|/|,
|
||||
,^"/*^|\_\\_ ^,|\|,
|
||||
'/+"` |*\+/\+ \\|*|
|
||||
,|'*| ^/|;|_|, /"|"|
|
||||
|" \` ,|*||;* |'/.|
|
||||
*""=| ;|^^_|".~++++++++,|_|~*
|
||||
_='| /||' /* |=\____..__|+/!|!
|
||||
\\\ * *\..|' `"*******"|,*||
|
||||
'\_./, ` ,+;/,*
|
||||
.\__|+, ,=_+!_|"
|
||||
`~^;__"*+:;=;;.=*`_||*
|
||||
`*+*+~~____~;/*"
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_20.txt
Normal file
17
codex-rs/tui2/frames/default/frame_20.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
__+=~~=+=,__
|
||||
,;=";,_,===||_^*\+,
|
||||
,,"_+*"~*" `"^"\+*|+_
|
||||
_|"_*|* _,+|\/*\\
|
||||
_| ,|* _/!_||^*\||\
|
||||
/`,|' +*';|"/ '\~|\
|
||||
;|;+| ,* .+*^ ,\|/
|
||||
|_^/` "";:|", |~"|
|
||||
|/||;,=;======_,';^^\\* / |\
|
||||
'|^|_" /``____|\ *\\"|=\ ,/ ||
|
||||
\,^\'"""""""*" \,=||,| /\
|
||||
* ^*/, _/*.|/
|
||||
\_^*,~_ ,;*`;*'
|
||||
^,-."~+^;;,:"~"`,/*'
|
||||
`*+~_!=____|*""
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_21.txt
Normal file
17
codex-rs/tui2/frames/default/frame_21.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
__,=+==+=+,__
|
||||
,+*``__+~=~+;_`-*+_
|
||||
;*^_+*^"` `^~*+_`*,
|
||||
,*|;"' _,;*,;*,
|
||||
/,/*` ,|/_\ \\_^,
|
||||
/"/| ,**_// \\^,
|
||||
|'|` _!/`,/' \;\"
|
||||
`\ \; "|, | |
|
||||
| | ,+;;;;;+++ ^|,"|, ;/ |
|
||||
| ~\ |_ _,| ^"`*|, /"./
|
||||
; ". ``""" '` '*_,; /` ,
|
||||
'+ :;_ _*" /
|
||||
*_ ^-_ _.;*' ,`
|
||||
*=_ *"*+:~~;:=*"" -`
|
||||
*++;+____,_;+*`
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_22.txt
Normal file
17
codex-rs/tui2/frames/default/frame_22.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_,+=+==+=+,_
|
||||
_+/*|._/|/\||;|+/*+_
|
||||
,;*;~\**` `"*\**+__+,
|
||||
;*~**" ,,|||_*\
|
||||
\|~/' ,_/|=|./;'|
|
||||
\|*/` ,~/|;^/` \|\=|
|
||||
|+*\/ ~+|\*/' ~|/|
|
||||
||=|` |\|~^\ |^|"|
|
||||
||,", +~==;;;=++_\*|_!\, _|;"!
|
||||
^|= *_\\,!/,"~//| \*;_"|,,!/\=
|
||||
\\\_| """""**"` `:*+_///",`
|
||||
\*\_\, _*,"|,'
|
||||
'"+; ++_ _.*,"*_/
|
||||
':*+,"*~;=+;;/=*""',*
|
||||
"~"~_;___-=_.=*`
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_23.txt
Normal file
17
codex-rs/tui2/frames/default/frame_23.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_,+_=+*++=+__
|
||||
_=|+|\_,_==,|_|*|+_
|
||||
,"+|',;*` "~:+|\;||,
|
||||
/;|*;/` _;;\||;\
|
||||
//|`/' ,/,,'*/*\|\
|
||||
,\|"/` _***''/*'|~\|,
|
||||
`||"| /:/. _|` "!|'*
|
||||
~/| | |"|,_\, | */|
|
||||
^"\ |+~;=====;=|_*|_"\_ | |~|
|
||||
|\\_|"=" /`\ \|_\,~ \_|
|
||||
/'| | `""""""" '`/;=|_/^/`
|
||||
,||_|. ,/|\^/`
|
||||
\ |,'/__ _.";*/+/
|
||||
\=\+;*+\~==_++"-_+*`
|
||||
"~!*=\~__+__**`
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_24.txt
Normal file
17
codex-rs/tui2/frames/default/frame_24.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_~_;++*==,_
|
||||
,"_/"|__~==+,_'+
|
||||
,"';\/+"~ .`:*~**, \
|
||||
,'//,/|=,\`~/`!_*\|\_'
|
||||
, //\/, `""/\_|``\|,'
|
||||
~,\+\` *,,/!.|;!/"\
|
||||
| |~! ,/_,/"/^\|\^|^
|
||||
| \|| |,=/\_|~_/.`||
|
||||
|. |;;;:++~~~++_*,_| | ||
|
||||
_ / !*|/,,;;,,|.^\+*| |*|
|
||||
\ '\|\*""""""` \,.*\|=/,`
|
||||
\ \,*\ |!"/;/
|
||||
\.*\`|. _="_/:_*
|
||||
.-*,\^"~~:==;|^_/`
|
||||
*:_*+;\__==+*
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_25.txt
Normal file
17
codex-rs/tui2/frames/default/frame_25.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_+=*;++++_
|
||||
,!*,*`_;\|*||,
|
||||
/|//,,".|+\=\|||_
|
||||
|+*| /! =| "\|,*\/
|
||||
,__\,/'^;/_|" |//\/*
|
||||
\,~|~_*+.^|: /|,|//|,
|
||||
|/|*| |__/\_/|\/_"|=|
|
||||
|||/|."!~_=\/|\_~=||\
|
||||
^+\|"|__====+~|\\|+*|\
|
||||
/-"|/|,|_||;*_|\*=/\|
|
||||
\~*/\|`"""""'+/|\|/|`
|
||||
|_"|;+;\-,*:_/,//|/
|
||||
^`^|_\_*;/,^/_||/
|
||||
\.;\\_*=|**!*|*
|
||||
~,"*\+,_+|*
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_26.txt
Normal file
17
codex-rs/tui2/frames/default/frame_26.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_;***"+,
|
||||
/*|;/\|+;|,
|
||||
/*""|;\|\""\,
|
||||
;*",||~_||_+/^
|
||||
|_,\|.~"*\/;|\;
|
||||
\ "|/:/"*_\"\\/
|
||||
|! *'=||/||;;"+
|
||||
/- \|||^^=||/||
|
||||
| .\*;+~+==/\||
|
||||
! ._|/,|__,*\\*|
|
||||
|`"/|*"\,/`+\||
|
||||
\_~|/\ //"||`
|
||||
* *|\ ^`/|/,
|
||||
|"*\\"*_**;
|
||||
\/:^*~_\*
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_27.txt
Normal file
17
codex-rs/tui2/frames/default/frame_27.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
;***+,
|
||||
|;:/|/\
|
||||
;'` *|/'|
|
||||
|~~^||;|~
|
||||
| `|_-'=
|
||||
~_._"`|||`
|
||||
= "||_*||!
|
||||
| `||~="||
|
||||
|. .!|+||||
|
||||
'= ."_|_*||
|
||||
|- _^**+/'
|
||||
||++||_/|
|
||||
|==+=,/|^
|
||||
\__|\=//
|
||||
'\" ^\/
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_28.txt
Normal file
17
codex-rs/tui2/frames/default/frame_28.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
/**;
|
||||
|+_|`
|
||||
= ;|`
|
||||
|-`*|
|
||||
| ~|
|
||||
| -"|
|
||||
^|~ _|
|
||||
|-""|
|
||||
/\ _|
|
||||
||.:~|
|
||||
| _|
|
||||
|=+=|
|
||||
|=*||
|
||||
*__/|
|
||||
~ .+|
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_29.txt
Normal file
17
codex-rs/tui2/frames/default/frame_29.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
+****,
|
||||
,|*/!*\
|
||||
^,|| '"|
|
||||
||||^\,/
|
||||
\ ~"| |
|
||||
|,~|| __
|
||||
|\\||| ^
|
||||
||=~|
|
||||
||~*| `
|
||||
_|=|| `
|
||||
*||/|^ =
|
||||
|/~~| _|
|
||||
~|||`~_|
|
||||
|=|*/"|'
|
||||
~|* .,
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_3.txt
Normal file
17
codex-rs/tui2/frames/default/frame_3.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_.=;++====,_
|
||||
_+,/\||+|"==|;_^|*+_
|
||||
,;/*;|*""` `"~!**+/^|,
|
||||
/+/\|;,+_ `=*!||\
|
||||
'/*|/^/||*\_ \^\||_
|
||||
/|\\/ .,|\;\\ | \\|
|
||||
=* | '*\|_"|, .*/|,
|
||||
,-|,| ,-|"/\| ~_|=|
|
||||
-"'| ;|*+~|*-~=++___++_~^";|
|
||||
,\:\, ./*/;;| |*|__,!=.,;\`|\|`
|
||||
'^| | "||+," "***"""**,///,/
|
||||
'*~ \+ ` /^+^//
|
||||
=^//*\, ,+;/",|'
|
||||
=^+,_**^=;=;,:=*;`_+"
|
||||
`*+*_:~____~;/^"
|
||||
|
||||
17
codex-rs/tui2/frames/default/frame_30.txt
Normal file
17
codex-rs/tui2/frames/default/frame_30.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_;"**+,
|
||||
_/;||\*'=\
|
||||
"'^|,\\|+,\
|
||||
||\|/|_\|\ \,
|
||||
=*||`\|,|, |
|
||||
|*|^+ *||||.|
|
||||
\/|||\_ \/\| =`
|
||||
"| '+=~,|"|- `
|
||||
"|_"\~=~\/|, `
|
||||
"||\|__~|!+, `
|
||||
!\||;\_*~||+~|
|
||||
|*//,/*\||" |
|
||||
\|\||/*~|,~/
|
||||
,^,+=^/|,/'
|
||||
\-.|^__;'
|
||||
````
|
||||
17
codex-rs/tui2/frames/default/frame_31.txt
Normal file
17
codex-rs/tui2/frames/default/frame_31.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
_.:*+*+=,
|
||||
_+*;+,_"+\'*,
|
||||
,|\//,=_`."|_*\
|
||||
,~/+__*;_,\\|\~|\
|
||||
^||||+-*\_,"\|/__
|
||||
;|^`~_|'"\;*,./|,"|
|
||||
/|| |^*|\.=/;*|*|/|
|
||||
\\, |~"|\ |^""|~\.|
|
||||
|\,_|'^~|~/+~~|_ |
|
||||
"||~//||___\_|\|| *
|
||||
^*_/+|, /***`/|'~_!
|
||||
|||\\\, _=* |
|
||||
;|*=_!, . |*`/`
|
||||
:|\|/_|`,|",|`
|
||||
'"=~_+*/.;*
|
||||
````
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue