73 lines
No EOL
76 KiB
HTML
73 lines
No EOL
76 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Voronoi Pulse Fields — exploration</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body { background: #0a0a0f; color: #3a3a4a; font-family: ui-monospace, monospace; overflow: hidden; }
|
|
#grid { padding: 20px; font-size: 12px; line-height: 1.4; white-space: pre; }
|
|
.c { display: inline-block; transition: all 0.3s; }
|
|
.c.active { color: #fde68a; text-shadow: 0 0 6px rgba(253,230,138,0.5); }
|
|
.c.strong { color: #34d399; text-shadow: 0 0 10px rgba(52,211,153,0.6); font-weight: bold; }
|
|
.c.dead { color: #1a1a2a; }
|
|
#info { position: fixed; bottom: 10px; left: 20px; color: #3a3a4a; font-size: 11px; }
|
|
#controls { position: fixed; top: 10px; right: 20px; color: #666; font-size: 11px; }
|
|
#controls span { cursor: pointer; margin-left: 12px; color: #fde68a; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="grid"></div>
|
|
<div id="info">neurameba · physarum exploration</div>
|
|
<div id="controls"><span id="play-btn">play</span><span id="reset-btn">reset</span></div>
|
|
<script>
|
|
const text = "# API Reference\n\nmotd is API-first. Every feature is an endpoint. Build clients, bots, integrations — whatever you want.\n\n## Base URL\n\n```\nhttps://motd.social/api\n```\n\nLocal dev: `http://localhost:3006/api`\n\n## Response Format\n\nEvery endpoint returns the same envelope:\n\n**Success:**\n```json\n{ \"ok\": true, \"data\": { ... } }\n```\n\n**Error:**\n```json\n{ \"ok\": false, \"error\": \"Something went wrong.\" }\n```\n\nHTTP status codes are standard: 200 success, 400 bad request, 401 unauthorized, 404 not found, 409 conflict.\n\n## Authentication\n\nMost endpoints require authentication. Get a token by registering or logging in, then send it as a Bearer token or let the browser handle it via cookies.\n\n**Header auth (for scripts and clients):**\n```\nAuthorization: Bearer <token>\n```\n\n**Cookie auth (for the web client):**\nThe login endpoints set an `motd_session` httpOnly cookie automatically.\n\nSessions expire after 7 days. Use `/login-permanently` in the web client to persist across tabs (stored in localStorage instead of sessionStorage — the token is the same).\n\n---\n\n## Auth\n\n### POST /api/auth/register\n\nCreate a new account.\n\n**Auth:** none\n\n**Body:**\n```json\n{ \"username\": \"alice\", \"password\": \"hunter2pwd\" }\n```\n\n**Rules:**\n- Username: 3-20 characters, letters, numbers, underscore only\n- Password: minimum 8 characters\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"token\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n \"user\": {\n \"username\": \"alice\",\n \"display_name\": \"alice\"\n }\n }\n}\n```\n\n**Errors:**\n- `400` — username or password missing, invalid format\n- `409` — username taken\n\n**Example:**\n```bash\ncurl -X POST http://localhost:3006/api/auth/register \\\n -H \"Content-Type: application/json\" \\\n -d '{\"username\":\"alice\",\"password\":\"hunter2pwd\"}'\n```\n\n### POST /api/auth/login\n\nLog in to an existing account.\n\n**Auth:** none\n\n**Body:**\n```json\n{ \"username\": \"alice\", \"password\": \"hunter2pwd\" }\n```\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"token\": \"a1b2c3d4-e5f6-7890-abcd-ef1234567890\",\n \"user\": {\n \"username\": \"alice\",\n \"display_name\": \"Alice\"\n }\n }\n}\n```\n\n**Errors:**\n- `400` — missing fields\n- `401` — invalid username or password\n\n**Example:**\n```bash\ncurl -X POST http://localhost:3006/api/auth/login \\\n -H \"Content-Type: application/json\" \\\n -d '{\"username\":\"alice\",\"password\":\"hunter2pwd\"}'\n```\n\n### GET /api/auth/me\n\nGet the current authenticated user.\n\n**Auth:** required\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"user\": {\n \"username\": \"alice\",\n \"display_name\": \"Alice\",\n \"bio\": \"building things\",\n \"created_at\": \"2026-03-15T10:30:00.000Z\"\n }\n }\n}\n```\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/auth/me \\\n -H \"Authorization: Bearer YOUR_TOKEN\"\n```\n\n### POST /api/auth/logout\n\nEnd the current session.\n\n**Auth:** required\n\n**Response:**\n```json\n{ \"ok\": true, \"data\": { \"message\": \"Logged out.\" } }\n```\n\n**Example:**\n```bash\ncurl -X POST http://localhost:3006/api/auth/logout \\\n -H \"Authorization: Bearer YOUR_TOKEN\"\n```\n\n---\n\n## Profile\n\n### GET /api/profile/:username\n\nView a user's profile.\n\n**Auth:** none\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"username\": \"alice\",\n \"display_name\": \"Alice\",\n \"bio\": \"building things\",\n \"created_at\": \"2026-03-15T10:30:00.000Z\",\n \"posts\": 42,\n \"avatar\": [\n \"████ ████\",\n \" ████████ \",\n \"████████████\",\n \" ████████ \",\n \"██ ████ ██\"\n ]\n }\n}\n```\n\n**Errors:**\n- `404` — user not found\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/profile/alice\n```\n\n### PUT /api/profile\n\nUpdate your display name and/or bio.\n\n**Auth:** required\n\n**Body:**\n```json\n{ \"display_name\": \"Alice W.\", \"bio\": \"shipping code\" }\n```\n\nBoth fields are optional. Send only what you want to change.\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"username\": \"alice\",\n \"display_name\": \"Alice W.\",\n \"bio\": \"shipping code\",\n \"created_at\": \"2026-03-15T10:30:00.000Z\"\n }\n}\n```\n\n**Errors:**\n- `400` — nothing to update\n\n**Example:**\n```bash\ncurl -X PUT http://localhost:3006/api/profile \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"bio\":\"shipping code\"}'\n```\n\n### GET /api/profile/search?q=\n\nSearch users by username or display name.\n\n**Auth:** none\n\n**Params:**\n- `q` — search query (required, min 1 character)\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"users\": [\n { \"username\": \"alice\", \"display_name\": \"Alice\", \"bio\": \"building things\" },\n { \"username\": \"alice2\", \"display_name\": \"Alice Too\", \"bio\": null }\n ]\n }\n}\n```\n\n**Example:**\n```bash\ncurl \"http://localhost:3006/api/profile/search?q=alice\"\n```\n\n---\n\n## Posts\n\n### POST /api/posts\n\nPublish a post.\n\n**Auth:** required\n\n**Body:**\n```json\n{ \"content\": \"just shipped the wasm compiler [rust] [wasm]\" }\n```\n\n**Optional fields:**\n- `reply_to` — post ID to reply to\n\n**Inline commands:**\n- `/attach <media_id>` — attach previously uploaded media to the post. The `/attach` command is stripped from the displayed content.\n\n**Rules:**\n- Content: 1-500 characters\n- Tags use [brackets]: `[rust]`, `[music]`, `[coding]`\n- Tags are auto-extracted and stored\n- New tags are auto-assigned to the \"general\" category\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"id\": \"a3kf9x\",\n \"content\": \"just shipped the wasm compiler [rust] [wasm]\",\n \"reply_to\": null,\n \"tags\": [\"rust\", \"wasm\"],\n \"media_id\": null,\n \"username\": \"alice\",\n \"display_name\": \"Alice\",\n \"created_at\": \"2026-03-22T14:00:00.000Z\"\n }\n}\n```\n\n**Errors:**\n- `400` — empty content, too long, media not found/not yours\n- `404` — reply_to post not found\n\n**Examples:**\n\nSimple post:\n```bash\ncurl -X POST http://localhost:3006/api/posts \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"content\":\"just shipped the wasm compiler [rust] [wasm]\"}'\n```\n\nReply to a post:\n```bash\ncurl -X POST http://localhost:3006/api/posts \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"content\":\"nice work!\",\"reply_to\":\"a3kf9x\"}'\n```\n\nPost with media attachment:\n```bash\ncurl -X POST http://localhost:3006/api/posts \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"content\":\"screenshot of the new UI /attach x7km2p [showcase]\"}'\n```\n\n### GET /api/posts/feed\n\nGet the chronological feed. Public — works without auth. Authenticated users get kill-filtered results; guests get unfiltered posts (still subject to system-level filter_score suppression).\n\n**Auth:** optional\n\n**Params:**\n- `limit` — max posts to return (default 50, max 100)\n- `offset` — pagination offset (default 0)\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"posts\": [\n {\n \"id\": \"a3kf9x\",\n \"content\": \"just shipped the wasm compiler [rust] [wasm]\",\n \"reply_to\": null,\n \"tags\": [\"rust\", \"wasm\"],\n \"media_id\": null,\n \"username\": \"alice\",\n \"display_name\": \"Alice\",\n \"created_at\": \"2026-03-22T14:00:00.000Z\"\n }\n ]\n }\n}\n```\n\n**Examples:**\n```bash\n# Guest (unfiltered)\ncurl \"http://localhost:3006/api/posts/feed?limit=20\"\n\n# Authenticated (kill-filtered)\ncurl \"http://localhost:3006/api/posts/feed?limit=20\" \\\n -H \"Authorization: Bearer YOUR_TOKEN\"\n```\n\n### GET /api/posts/:id\n\nGet a single post by ID.\n\n**Auth:** none\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"id\": \"a3kf9x\",\n \"content\": \"just shipped the wasm compiler [rust] [wasm]\",\n \"reply_to\": null,\n \"tags\": [\"rust\", \"wasm\"],\n \"media_id\": null,\n \"username\": \"alice\",\n \"display_name\": \"Alice\",\n \"created_at\": \"2026-03-22T14:00:00.000Z\"\n }\n}\n```\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/posts/a3kf9x\n```\n\n### GET /api/posts/:id/thread\n\nGet a post and all its replies.\n\n**Auth:** none\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"post\": {\n \"id\": \"a3kf9x\",\n \"content\": \"just shipped the wasm compiler [rust] [wasm]\",\n \"reply_to\": null,\n \"tags\": [\"rust\", \"wasm\"],\n \"username\": \"alice\",\n \"display_name\": \"Alice\",\n \"created_at\": \"2026-03-22T14:00:00.000Z\"\n },\n \"replies\": [\n {\n \"id\": \"b7xm2k\",\n \"content\": \"nice work!\",\n \"reply_to\": \"a3kf9x\",\n \"tags\": [],\n \"username\": \"bob\",\n \"display_name\": \"Bob\",\n \"created_at\": \"2026-03-22T14:05:00.000Z\"\n }\n ]\n }\n}\n```\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/posts/a3kf9x/thread\n```\n\n### GET /api/posts/search\n\nSearch posts by content. Searches active posts by default, or archived posts with the `archive` flag.\n\n**Auth:** none\n\n**Params:**\n- `q` — search query (required)\n- `archive` — set to `true` to search archived posts instead\n\n**Response (active):**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"posts\": [\n {\n \"id\": \"a3kf9x\",\n \"content\": \"just shipped the wasm compiler [rust] [wasm]\",\n \"tags\": [\"rust\", \"wasm\"],\n \"media_id\": null,\n \"username\": \"alice\",\n \"display_name\": \"Alice\",\n \"created_at\": \"2026-03-22T14:00:00.000Z\",\n \"archived\": false\n }\n ]\n }\n}\n```\n\n**Response (archive):**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"posts\": [\n {\n \"id\": \"b7xm2k\",\n \"content\": \"old post about [rust]\",\n \"tags\": [\"rust\"],\n \"username\": \"alice\",\n \"display_name\": \"Alice\",\n \"created_at\": \"2025-12-01T08:00:00.000Z\",\n \"archived\": true\n }\n ]\n }\n}\n```\n\n**Examples:**\n```bash\n# Search active posts\ncurl \"http://localhost:3006/api/posts/search?q=rust\"\n\n# Search archived posts\ncurl \"http://localhost:3006/api/posts/search?q=rust&archive=true\"\n```\n\n---\n\n## Filter (Kill)\n\nThe `/kill` command maps to the filter API. The word \"kill\" never appears in the database or API.\n\n### POST /api/filter\n\nAdd a filter. Hides a user or post from your feed.\n\n**Auth:** required\n\n**Body:**\n```json\n{ \"target_type\": \"user\", \"target_id\": \"bob\" }\n```\n\n- `target_type` — `\"user\"` or `\"post\"`\n- `target_id` — username (for users) or post ID (for posts)\n\nFiltering a user also increments their hidden `filter_score`. Users filtered by enough people get suppressed from everyone's feed silently (threshold: ~5 active filters, with 7-day half-life decay).\n\n**Response:**\n```json\n{ \"ok\": true, \"data\": { \"message\": \"Filtered.\" } }\n```\n\n**Errors:**\n- `400` — missing fields, invalid type, can't filter yourself\n- `404` — user not found\n\n**Example:**\n```bash\ncurl -X POST http://localhost:3006/api/filter \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"target_type\":\"user\",\"target_id\":\"spammer\"}'\n```\n\n### GET /api/filter\n\nGet your current filter list.\n\n**Auth:** required\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"filters\": [\n { \"type\": \"user\", \"id\": \"uuid-of-filtered-user\" },\n { \"type\": \"post\", \"id\": \"b7xm2k\" }\n ]\n }\n}\n```\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/filter \\\n -H \"Authorization: Bearer YOUR_TOKEN\"\n```\n\n---\n\n## Media\n\nSupported formats: PNG (max 5MB), MP3 (max 10MB), MP4 (max 25MB).\n\nPNG uploads are processed into multiple variants: original (downscaled to max 1MB), thumbnail (80px wide), large (800px wide), and ASCII art.\n\n### POST /api/media/upload\n\nUpload a file.\n\n**Auth:** required\n\n**Body:** multipart/form-data with `file` field\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"media_id\": \"x7km2p\",\n \"type\": \"png\"\n }\n}\n```\n\n**Errors:**\n- `400` — no file, unsupported type, file too large\n\n**Example:**\n```bash\ncurl -X POST http://localhost:3006/api/media/upload \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -F \"file=@screenshot.png\"\n```\n\n### GET /api/media/:id\n\nServe the original file.\n\n**Auth:** none\n\n**Response:** raw file with appropriate Content-Type header (`image/png`, `audio/mpeg`, `video/mp4`)\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/media/x7km2p -o image.png\n```\n\n### GET /api/media/:id/thumb\n\nServe the thumbnail (PNG only, max 80px wide).\n\n**Auth:** none\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/media/x7km2p/thumb -o thumb.png\n```\n\n### GET /api/media/:id/large\n\nServe the large version (PNG only, max 800px wide).\n\n**Auth:** none\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/media/x7km2p/large -o large.png\n```\n\n### GET /api/media/:id/ascii\n\nGet the ASCII art representation (PNG only).\n\n**Auth:** none\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"ascii\": \" @@@@ \\n @ @ \\n @ @ \\n @@@@ \\n\"\n }\n}\n```\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/media/x7km2p/ascii\n```\n\n---\n\n## Avatar\n\n### POST /api/avatar\n\nUpload a profile picture. PNG only, max 5MB. Processes into thumb, large, and ASCII art versions. Sets as your avatar immediately.\n\n**Auth:** required\n\n**Body:** multipart/form-data with `file` field\n\n**Response:**\n```json\n{ \"ok\": true, \"data\": { \"avatar_id\": \"x7km2p\" } }\n```\n\n**Example:**\n```bash\ncurl -X POST http://localhost:3006/api/avatar \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -F \"file=@photo.png\"\n```\n\n### GET /api/avatar/:username\n\nGet a user's avatar image (large version, 800px max).\n\n**Auth:** none\n\n**Response:** raw PNG with `Content-Type: image/png`\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/avatar/alice -o avatar.png\n```\n\nReturns 404 if the user has no uploaded avatar.\n\n---\n\n## Bookmarks\n\nBookmarks are private. Nobody sees your bookmarks. No counts, no notifications. One concept for everything: users, tags, posts, docs.\n\n### POST /api/bookmarks\n\nAdd a bookmark.\n\n**Auth:** required\n\n**Body:**\n```json\n{ \"target_type\": \"user\", \"target_id\": \"alice\" }\n```\n\n- `target_type` — `\"user\"`, `\"tag\"`, `\"post\"`, or `\"doc\"`\n- `target_id` — username, tag name, post ID, or doc name\n\nBookmarking the same thing twice is a no-op, not an error.\n\n**Response:**\n```json\n{ \"ok\": true, \"data\": { \"message\": \"Bookmarked.\" } }\n```\n\n**Errors:**\n- `400` — missing fields, invalid type\n\n**Example:**\n```bash\n# Bookmark a user\ncurl -X POST http://localhost:3006/api/bookmarks \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"target_type\":\"user\",\"target_id\":\"alice\"}'\n\n# Bookmark a tag\ncurl -X POST http://localhost:3006/api/bookmarks \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"target_type\":\"tag\",\"target_id\":\"rust\"}'\n\n# Bookmark a post\ncurl -X POST http://localhost:3006/api/bookmarks \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"target_type\":\"post\",\"target_id\":\"a3kf9x\"}'\n\n# Bookmark a doc\ncurl -X POST http://localhost:3006/api/bookmarks \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"target_type\":\"doc\",\"target_id\":\"api\"}'\n```\n\n### DELETE /api/bookmarks\n\nRemove a bookmark.\n\n**Auth:** required\n\n**Body:**\n```json\n{ \"target_type\": \"user\", \"target_id\": \"alice\" }\n```\n\n**Response:**\n```json\n{ \"ok\": true, \"data\": { \"message\": \"Unbookmarked.\" } }\n```\n\n**Example:**\n```bash\ncurl -X DELETE http://localhost:3006/api/bookmarks \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"target_type\":\"user\",\"target_id\":\"alice\"}'\n```\n\n### GET /api/bookmarks\n\nList your bookmarks. Optionally filter by type.\n\n**Auth:** required\n\n**Params:**\n- `type` — optional: `user`, `tag`, `post`, or `doc`\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"bookmarks\": [\n { \"type\": \"user\", \"id\": \"alice\" },\n { \"type\": \"tag\", \"id\": \"rust\" },\n {\n \"type\": \"post\",\n \"id\": \"a3kf9x\",\n \"preview\": \"just shipped the wasm compiler...\",\n \"username\": \"alice\"\n },\n {\n \"type\": \"post\",\n \"id\": \"old123\",\n \"preview\": \"this was archived...\",\n \"archived\": true\n },\n {\n \"type\": \"post\",\n \"id\": \"gone99\",\n \"expired\": true\n },\n { \"type\": \"doc\", \"id\": \"api\" }\n ]\n }\n}\n```\n\nPost bookmarks are enriched with a content preview (60 chars), the author's username, and status flags (`archived`, `expired`) when applicable.\n\n**Examples:**\n```bash\n# All bookmarks\ncurl http://localhost:3006/api/bookmarks \\\n -H \"Authorization: Bearer YOUR_TOKEN\"\n\n# Only bookmarked tags\ncurl \"http://localhost:3006/api/bookmarks?type=tag\" \\\n -H \"Authorization: Bearer YOUR_TOKEN\"\n```\n\n---\n\n## Docs\n\n### GET /api/docs\n\nList all available documentation files.\n\n**Auth:** none\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"docs\": [\n { \"name\": \"about\", \"path\": \"docs/about.md\" },\n { \"name\": \"api\", \"path\": \"docs/api.md\" },\n { \"name\": \"commands\", \"path\": \"docs/commands.md\" },\n { \"name\": \"changelog\", \"path\": \"docs/changelog.md\" }\n ]\n }\n}\n```\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/docs\n```\n\n### GET /api/docs/:name\n\nGet the contents of a specific document. The `.md` extension is optional.\n\n**Auth:** none\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"name\": \"api\",\n \"content\": \"# API Reference\\n\\n...\"\n }\n}\n```\n\n**Errors:**\n- `400` — path traversal attempt\n- `404` — document not found\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/docs/api\n```\n\n---\n\n## Categories\n\n### GET /api/categories\n\nGet the category tree with tags. Used by `/tree -cat` in the client.\n\n**Auth:** none\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"categories\": [\n {\n \"id\": \"coding\",\n \"name\": \"coding\",\n \"tags\": [\"rust\", \"python\", \"wasm\", \"js\", \"frontend\", \"backend\"]\n },\n {\n \"id\": \"creative\",\n \"name\": \"creative\",\n \"tags\": [\"music\", \"art\", \"writing\", \"gamedev\"]\n },\n {\n \"id\": \"meta\",\n \"name\": \"meta\",\n \"tags\": [\"motd\", \"bugs\", \"ideas\", \"feedback\"]\n },\n {\n \"id\": \"general\",\n \"name\": \"general\",\n \"tags\": [\"offtopic\", \"introductions\", \"showcase\"]\n }\n ]\n }\n}\n```\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/categories\n```\n\n---\n\n## Commands\n\n### GET /api/commands\n\nGet the full command list grouped by category. Used by `/help` and `/menu` in the client.\n\n**Auth:** none\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"categories\": [\n {\n \"name\": \"General\",\n \"commands\": [\n { \"command\": \"/help\", \"description\": \"Show all available commands\" },\n { \"command\": \"/menu\", \"description\": \"Toggle the command menu\" },\n { \"command\": \"/clear\", \"description\": \"Clear the terminal\" },\n { \"command\": \"/read [path]\", \"description\": \"Read a document\" },\n { \"command\": \"/tree -cat\", \"description\": \"Browse categories and tags\" },\n { \"command\": \"/link [target]\", \"description\": \"Navigate to user, tag, post, or doc\" }\n ]\n }\n ]\n }\n}\n```\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/commands\n```\n\n---\n\n## Telegram Connect\n\n### POST /api/connect/telegram\n\nGenerate a Telegram deep link to connect your account.\n\n**Auth:** required\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"link\": \"https://t.me/motdsocial_bot?start=alice_a8f3k2\",\n \"expires_in\": 600\n }\n}\n```\n\nIf already connected:\n```json\n{\n \"ok\": true,\n \"data\": {\n \"already_connected\": true,\n \"message\": \"Telegram already connected.\"\n }\n}\n```\n\n**Example:**\n```bash\ncurl -X POST http://localhost:3006/api/connect/telegram \\\n -H \"Authorization: Bearer YOUR_TOKEN\"\n```\n\n### DELETE /api/connect/telegram\n\nDisconnect your Telegram account.\n\n**Auth:** required\n\n**Response:**\n```json\n{ \"ok\": true, \"data\": { \"message\": \"Telegram disconnected.\" } }\n```\n\n**Example:**\n```bash\ncurl -X DELETE http://localhost:3006/api/connect/telegram \\\n -H \"Authorization: Bearer YOUR_TOKEN\"\n```\n\n### POST /api/connect/email\n\nSend a verification email to connect your email address.\n\n**Auth:** required\n\n**Body:**\n```json\n{ \"email\": \"you@gmail.com\" }\n```\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"message\": \"Verification email sent to you@gmail.com\",\n \"tip\": \"Tip: add noreply@motd.social to your contacts so notifications don't go to spam.\"\n }\n}\n```\n\n**Example:**\n```bash\ncurl -X POST http://localhost:3006/api/connect/email \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"email\":\"you@gmail.com\"}'\n```\n\n### GET /api/connect/email/verify\n\nVerify email address from link in verification email.\n\n**Auth:** none (link from email)\n\n**Params:**\n- `code` — verification code from the email link\n\nReturns an HTML confirmation page on success.\n\n### DELETE /api/connect/email\n\nDisconnect your email address.\n\n**Auth:** required\n\n**Response:**\n```json\n{ \"ok\": true, \"data\": { \"message\": \"Email disconnected.\" } }\n```\n\n**Example:**\n```bash\ncurl -X DELETE http://localhost:3006/api/connect/email \\\n -H \"Authorization: Bearer YOUR_TOKEN\"\n```\n\n### GET /api/connect/status\n\nCheck your Telegram and email connection status and notification settings.\n\n**Auth:** required\n\n**Response:**\n```json\n{\n \"ok\": true,\n \"data\": {\n \"telegram\": {\n \"connected\": true,\n \"username\": \"alice_tg\",\n \"notify\": true,\n \"notify_bookmarks\": true,\n \"notify_mentions\": true\n },\n \"email\": {\n \"connected\": true,\n \"address\": \"alice@gmail.com\",\n \"notify\": true,\n \"notify_bookmarks\": true,\n \"notify_mentions\": true\n }\n }\n}\n```\n\n**Example:**\n```bash\ncurl http://localhost:3006/api/connect/status \\\n -H \"Authorization: Bearer YOUR_TOKEN\"\n```\n\n---\n\n## Account\n\n### DELETE /api/account\n\nPermanently delete your account. This is irreversible. Deletes all posts, media, sessions, and user data.\n\n**Auth:** required\n\n**Body:**\n```json\n{ \"confirm_username\": \"alice\" }\n```\n\nThe `confirm_username` must match your actual username.\n\n**Response:**\n```json\n{ \"ok\": true, \"data\": { \"message\": \"Account terminated.\" } }\n```\n\n**Errors:**\n- `400` — username confirmation doesn't match\n\n**Example:**\n```bash\ncurl -X DELETE http://localhost:3006/api/account \\\n -H \"Authorization: Bearer YOUR_TOKEN\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"confirm_username\":\"alice\"}'\n```\n";
|
|
const passes = [{"t":0,"r":933,"c":2,"a":"hold","s":0.2742891423006742,"ps":9,"e":100.8443131384054,"pr":1.1},{"t":0,"r":1068,"c":36,"a":"extend","s":0.42489483628409375,"ps":9,"e":71.43441108319092,"pr":1.1},{"t":0,"r":167,"c":0,"a":"died","s":0,"ps":8,"e":100,"pr":1},{"t":0,"r":796,"c":15,"a":"extend","s":0.41987870621606516,"ps":9,"e":71.40632075480995,"pr":1.1},{"t":1,"r":933,"c":2,"a":"hold","s":0.21636012879784314,"ps":9,"e":101.22519416878814,"pr":1.1},{"t":1,"r":1068,"c":36,"a":"extend","s":0.42260577188165505,"ps":8,"e":51.53068008077091,"pr":1.05},{"t":1,"r":796,"c":15,"a":"extend","s":0.39346452998177045,"ps":9,"e":51.24282589626488,"pr":1.1},{"t":1,"r":1068,"c":35,"a":"hold","s":0.09333579315685031,"ps":5,"e":30.611433952336625,"pr":1.2000000000000002},{"t":1,"r":796,"c":14,"a":"hold","s":0.14998290719198637,"ps":5,"e":31.052572152454445,"pr":1.2000000000000002},{"t":2,"r":933,"c":2,"a":"retracted","s":0.21636012879784314,"ps":8,"e":101.75607519917088,"pr":1.05},{"t":2,"r":1068,"c":36,"a":"extend","s":0.42489483628409375,"ps":7,"e":37.71588713973056,"pr":1},{"t":2,"r":796,"c":15,"a":"extend","s":0.39346452998177045,"ps":8,"e":37.23337949528333,"pr":1.05},{"t":2,"r":1068,"c":35,"a":"hold","s":0.14680389642125222,"ps":5,"e":31.035865123706643,"pr":1.2000000000000002},{"t":2,"r":796,"c":14,"a":"hold","s":0.14407649092049987,"ps":5,"e":31.455184079818444,"pr":1.2000000000000002},{"t":3,"r":1068,"c":36,"a":"extend","s":0.401124774909063,"ps":7,"e":27.912419737302145,"pr":1},{"t":3,"r":796,"c":15,"a":"extend","s":0.41987870621606516,"ps":8,"e":27.574686401508295,"pr":1.05},{"t":3,"r":1068,"c":35,"a":"retracted","s":0.14680389642125222,"ps":4,"e":31.61029629507666,"pr":1.1500000000000001},{"t":3,"r":796,"c":14,"a":"retracted","s":0.14407649092049987,"ps":4,"e":32.00779600718244,"pr":1.1500000000000001},{"t":3,"r":1068,"c":37,"a":"hold","s":0.20884634779696912,"ps":5,"e":17.08472241368885,"pr":1.1},{"t":3,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":5,"e":13.141327903288092,"pr":1.1500000000000001},{"t":4,"r":1068,"c":36,"a":"extend","s":0.401124774909063,"ps":6,"e":21.154992555602252,"pr":0.95},{"t":4,"r":796,"c":15,"a":"extend","s":0.41987870621606516,"ps":7,"e":20.918601235865772,"pr":1},{"t":4,"r":1068,"c":37,"a":"hold","s":0.1727527319933797,"ps":4,"e":17.866744269635888,"pr":1.05},{"t":4,"r":796,"c":16,"a":"extend","s":0.45468046226452974,"ps":4,"e":11.32514012098303,"pr":1.1},{"t":5,"r":1068,"c":36,"a":"hold","s":0.3474974071802458,"ps":6,"e":23.03497181304422,"pr":0.95},{"t":5,"r":796,"c":15,"a":"hold","s":0.3802401197783255,"ps":6,"e":23.060522194092375,"pr":0.95},{"t":5,"r":1068,"c":37,"a":"retracted","s":0.20884634779696912,"ps":4,"e":18.93751505201164,"pr":1},{"t":5,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":10.003912139391213,"pr":1.05},{"t":5,"r":1068,"c":35,"a":"hold","s":0.23115532399997246,"ps":5,"e":10.165667972972173,"pr":1.05},{"t":5,"r":796,"c":14,"a":"hold","s":0.22423568743898642,"ps":5,"e":10.009000314882936,"pr":1.1},{"t":5,"r":796,"c":17,"a":"hold","s":0.2840584095293159,"ps":5,"e":6.376098756655825,"pr":1.2000000000000002},{"t":6,"r":1068,"c":36,"a":"hold","s":0.3474974071802458,"ps":5,"e":25.064951070486185,"pr":0.8999999999999999},{"t":6,"r":796,"c":15,"a":"hold","s":0.37763759173746503,"ps":5,"e":25.331622927992093,"pr":0.8999999999999999},{"t":6,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":9.07905255227694,"pr":1},{"t":6,"r":1068,"c":35,"a":"hold","s":0.2511819610364826,"ps":5,"e":11.425123661264035,"pr":1.05},{"t":6,"r":796,"c":14,"a":"hold","s":0.23511271538329356,"ps":5,"e":11.139902037949284,"pr":1.1},{"t":6,"r":796,"c":17,"a":"hold","s":0.34131935996170415,"ps":5,"e":8.356653636349458,"pr":1.2000000000000002},{"t":7,"r":1068,"c":36,"a":"retracted","s":0.3205297295326896,"ps":5,"e":26.8791889067477,"pr":0.8999999999999999},{"t":7,"r":796,"c":15,"a":"retracted","s":0.3241509909528821,"ps":5,"e":27.17483085561515,"pr":0.8999999999999999},{"t":7,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":8.431650841296948,"pr":0.95},{"t":7,"r":1068,"c":35,"a":"retracted","s":0.2511819610364826,"ps":4,"e":12.834579349555895,"pr":1},{"t":7,"r":796,"c":14,"a":"retracted","s":0.23511271538329356,"ps":4,"e":12.420803761015632,"pr":1.05},{"t":7,"r":796,"c":17,"a":"retracted","s":0.34131935996170415,"ps":4,"e":10.487208516043092,"pr":1.1500000000000001},{"t":8,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":7.978469643610954,"pr":0.8999999999999999},{"t":9,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":7.661242805230759,"pr":0.8499999999999999},{"t":9,"r":796,"c":17,"a":"hold","s":0.17925696299022936,"ps":5,"e":4.1033998368979585,"pr":0.9999999999999999},{"t":10,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":7.439184018364623,"pr":0.7999999999999998},{"t":10,"r":796,"c":17,"a":"hold","s":0.3080088919082424,"ps":6,"e":5.667470972163898,"pr":1.0999999999999999},{"t":12,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":7.17493406199392,"pr":0.6999999999999997},{"t":12,"r":796,"c":18,"a":"hold","s":0.2386326750664236,"ps":5,"e":3.464287136763307,"pr":1.2},{"t":14,"r":796,"c":17,"a":"extend","s":0.3080088919082424,"ps":4,"e":4.7328425301703545,"pr":0.9999999999999998},{"t":14,"r":796,"c":18,"a":"extend","s":0.29697802577556737,"ps":4,"e":3.7372315023974214,"pr":1.15},{"t":16,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.982005168847672,"pr":0.4999999999999996},{"t":17,"r":796,"c":18,"a":"extend","s":0.2386326750664236,"ps":4,"e":3.288661532336934,"pr":1.0499999999999998},{"t":18,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.950916425730615,"pr":0.39999999999999963},{"t":19,"r":796,"c":18,"a":"hold","s":0.2386326750664236,"ps":4,"e":4.527467453539215,"pr":0.9499999999999997},{"t":19,"r":796,"c":15,"a":"retracted","s":0.1724551063955915,"ps":4,"e":5.671353156178635,"pr":0.4999999999999995},{"t":23,"r":796,"c":15,"a":"retracted","s":0.3102471540252019,"ps":4,"e":7.866105593995844,"pr":0.35000000000000003},{"t":23,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":5,"e":4.259866544408973,"pr":0.4},{"t":25,"r":796,"c":15,"a":"hold","s":0.17856074627457288,"ps":5,"e":3.6461549594145284,"pr":0.4},{"t":26,"r":796,"c":18,"a":"retracted","s":0.12627012599603232,"ps":4,"e":3.118622648901774,"pr":0.45},{"t":28,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.032728296584845,"pr":0.3},{"t":30,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921460282400263,"pr":0.3},{"t":30,"r":796,"c":18,"a":"retracted","s":0.2714565123814484,"ps":4,"e":7.9387425166757986,"pr":0.35000000000000003},{"t":35,"r":796,"c":15,"a":"extend","s":0.3429756138275032,"ps":5,"e":3.861053777611546,"pr":0.45},{"t":36,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921095489035199,"pr":0.3},{"t":36,"r":796,"c":19,"a":"extend","s":0.4914299279521771,"ps":5,"e":4.424819919919384,"pr":0.5},{"t":37,"r":796,"c":19,"a":"extend","s":0.4914299279521771,"ps":4,"e":5.42938154047576,"pr":0.45},{"t":38,"r":796,"c":18,"a":"extend","s":0.2748095834448852,"ps":5,"e":3.1907876853465074,"pr":0.5},{"t":38,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":6.06410203945675,"pr":0.45},{"t":39,"r":796,"c":18,"a":"extend","s":0.381013438953633,"ps":5,"e":3.8422266378828995,"pr":0.5},{"t":41,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.92105502393929,"pr":0.3},{"t":42,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921052571460594,"pr":0.3},{"t":42,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.189524956199943,"pr":0.3},{"t":43,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.296202430463678,"pr":0.3},{"t":45,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.619967331095698,"pr":0.3},{"t":45,"r":796,"c":20,"a":"hold","s":0.355896221084044,"ps":4,"e":8.776790917350882,"pr":0.35000000000000003},{"t":45,"r":796,"c":21,"a":"extend","s":0.3864614696457253,"ps":4,"e":5.0549516044701654,"pr":0.39999999999999997},{"t":45,"r":796,"c":22,"a":"hold","s":0.16390431213401205,"ps":5,"e":2.4267378990586708,"pr":0.6},{"t":46,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921048222970619,"pr":0.3},{"t":46,"r":796,"c":21,"a":"hold","s":0.3864614696457253,"ps":4,"e":7.546643361635968,"pr":0.35},{"t":47,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.620665665197911,"pr":0.3},{"t":50,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":5.690098770195728,"pr":0.3},{"t":50,"r":796,"c":20,"a":"retracted","s":0.2875188588102696,"ps":4,"e":8.471924704752123,"pr":0.30000000000000004},{"t":52,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921047010655362,"pr":0.3},{"t":52,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.621223847342873,"pr":0.3},{"t":52,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":5.904927072007252,"pr":0.3},{"t":53,"r":796,"c":15,"a":"extend","s":0.2843527510408217,"ps":4,"e":4.33628906432354,"pr":0.35000000000000003},{"t":54,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.540194691881854,"pr":0.3},{"t":54,"r":796,"c":20,"a":"retracted","s":0.23186691874346943,"ps":5,"e":5.969284556706672,"pr":0.45},{"t":55,"r":796,"c":14,"a":"extend","s":0.2533041279693288,"ps":5,"e":2.1619036804908025,"pr":0.4},{"t":56,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046887821284,"pr":0.3},{"t":56,"r":796,"c":14,"a":"extend","s":0.3027107801030498,"ps":5,"e":2.6835129449206403,"pr":0.4},{"t":58,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.543934802047209,"pr":0.3},{"t":59,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.094332505387384,"pr":0.3},{"t":59,"r":796,"c":15,"a":"extend","s":0.28796420259203476,"ps":4,"e":4.0177980450592425,"pr":0.3},{"t":60,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046858328821,"pr":0.3},{"t":61,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.621332063121854,"pr":0.3},{"t":61,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.1030016022511635,"pr":0.3},{"t":61,"r":796,"c":21,"a":"extend","s":0.31592164570058795,"ps":4,"e":4.052583939297964,"pr":0.5499999999999999},{"t":62,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.10550034193543,"pr":0.3},{"t":62,"r":796,"c":14,"a":"hold","s":0.2533041279693288,"ps":4,"e":4.712830245322133,"pr":0.3},{"t":64,"r":796,"c":14,"a":"retracted","s":0.2533041279693288,"ps":4,"e":7.565696292831392,"pr":0.3},{"t":64,"r":796,"c":20,"a":"hold","s":0.294335905256282,"ps":4,"e":8.276713068318836,"pr":0.4},{"t":66,"r":796,"c":21,"a":"retracted","s":0.31592164570058795,"ps":4,"e":10.06145969413971,"pr":0.3},{"t":68,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213362388935755,"pr":0.3},{"t":71,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.111095457160552,"pr":0.3},{"t":71,"r":796,"c":20,"a":"hold","s":0.24789035687152114,"ps":5,"e":4.466737217977207,"pr":0.4},{"t":72,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.621336523670267,"pr":0.3},{"t":72,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545108522279413,"pr":0.3},{"t":73,"r":796,"c":20,"a":"retracted","s":0.29935872012039144,"ps":4,"e":7.90647673990347,"pr":0.35000000000000003},{"t":74,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.111250034393626,"pr":0.3},{"t":74,"r":796,"c":15,"a":"hold","s":0.18508212767907808,"ps":5,"e":3.767608195295203,"pr":0.4},{"t":75,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.111274244435154,"pr":0.3},{"t":79,"r":796,"c":15,"a":"extend","s":0.2710391294943902,"ps":4,"e":3.5746737416243737,"pr":0.35000000000000003},{"t":80,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.5451160750418085,"pr":0.3},{"t":80,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.111321240241464,"pr":0.3},{"t":81,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849015509,"pr":0.3},{"t":81,"r":796,"c":15,"a":"hold","s":0.1775411710558961,"ps":4,"e":5.215332478518711,"pr":0.30000000000000004},{"t":81,"r":796,"c":20,"a":"extend","s":0.2506491298222327,"ps":5,"e":3.762381842336062,"pr":0.4},{"t":82,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116310680806,"pr":0.3},{"t":83,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116378600281,"pr":0.3},{"t":84,"r":796,"c":20,"a":"hold","s":0.2045021343256796,"ps":4,"e":5.68933656585062,"pr":0.30000000000000004},{"t":85,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116459424458,"pr":0.3},{"t":86,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366130388,"pr":0.3},{"t":86,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116482720838,"pr":0.3},{"t":87,"r":796,"c":15,"a":"hold","s":0.28490453333907123,"ps":5,"e":4.4953992020030755,"pr":0.4},{"t":88,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010734,"pr":0.3},{"t":88,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.621336613350031,"pr":0.3},{"t":89,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366134397384,"pr":0.3},{"t":89,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116518434189,"pr":0.3},{"t":89,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.111330351403181,"pr":0.3},{"t":94,"r":796,"c":20,"a":"hold","s":0.2759839356578932,"ps":4,"e":6.584235411967287,"pr":0.35000000000000003},{"t":95,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.5451165348855085,"pr":0.3},{"t":96,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010331,"pr":0.3},{"t":98,"r":796,"c":15,"a":"retracted","s":0.131549147122746,"ps":4,"e":4.154735694687256,"pr":0.35000000000000003},{"t":99,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010314,"pr":0.3},{"t":99,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133072370961,"pr":0.3},{"t":101,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.5451165368209905,"pr":0.3},{"t":102,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.621336613647028,"pr":0.3},{"t":102,"r":796,"c":21,"a":"extend","s":0.3775587241891859,"ps":4,"e":4.711538660952092,"pr":0.3},{"t":102,"r":796,"c":15,"a":"hold","s":0.20233589395771398,"ps":5,"e":3.8348500869518443,"pr":0.4},{"t":104,"r":796,"c":21,"a":"extend","s":0.3775587241891859,"ps":4,"e":5.189012998147574,"pr":0.3},{"t":105,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.111330733258802,"pr":0.3},{"t":105,"r":796,"c":22,"a":"hold","s":0.13247386137308606,"ps":5,"e":3.21167342010862,"pr":0.4},{"t":106,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.62133661364857,"pr":0.3},{"t":106,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.111330733640777,"pr":0.3},{"t":107,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":107,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537048698,"pr":0.3},{"t":108,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.621336613648817,"pr":0.3},{"t":110,"r":796,"c":15,"a":"hold","s":0.184510154127335,"ps":5,"e":3.6922441683088114,"pr":0.4},{"t":110,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":5,"e":4.47582861016226,"pr":0.4},{"t":111,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.111330734382253,"pr":0.3},{"t":112,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.111330734427192,"pr":0.3},{"t":113,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":6.7051690791300285,"pr":0.3},{"t":114,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":5.6496890318454955,"pr":0.3500000000000001},{"t":115,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537077309,"pr":0.3},{"t":115,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.224932052146823,"pr":0.3},{"t":116,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537077835,"pr":0.3},{"t":116,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.37474608554578,"pr":0.3},{"t":116,"r":796,"c":15,"a":"hold","s":0.16935160752948777,"ps":4,"e":4.2955255187068255,"pr":0.35000000000000003},{"t":117,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.5451165370782025,"pr":0.3},{"t":117,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.111330734514428,"pr":0.3},{"t":118,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.621336613649051,"pr":0.3},{"t":119,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.111330734523415,"pr":0.3},{"t":119,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.604410998746384,"pr":0.3},{"t":120,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":120,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.621336613649055,"pr":0.3},{"t":121,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":123,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.5451165370789575,"pr":0.3},{"t":124,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.423748691707955,"pr":0.3},{"t":125,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":125,"r":796,"c":22,"a":"retracted","s":0.131429901733792,"ps":4,"e":4.185518644808597,"pr":0.35000000000000003},{"t":126,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.4500491394115285,"pr":0.3},{"t":127,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.7174000999333,"pr":0.3},{"t":128,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":128,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.462936358786281,"pr":0.3},{"t":128,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.29750591816573,"pr":0.3},{"t":129,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.361069607268575,"pr":0.3},{"t":129,"r":796,"c":22,"a":"retracted","s":0.1333227072192243,"ps":4,"e":3.660544370513333,"pr":0.35000000000000003},{"t":130,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":130,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":131,"r":796,"c":14,"a":"hold","s":0.29084854441668373,"ps":5,"e":4.322030150893712,"pr":0.4},{"t":132,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079056,"pr":0.3},{"t":132,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.1113307345319665,"pr":0.3},{"t":133,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.473237181458974,"pr":0.3},{"t":134,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":134,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":134,"r":796,"c":22,"a":"hold","s":0.11963567503191333,"ps":4,"e":3.88870197183334,"pr":0.35000000000000003},{"t":135,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.1113307345320225,"pr":0.3},{"t":135,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.491935738103602,"pr":0.3},{"t":136,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":136,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.474604408675393,"pr":0.3},{"t":137,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":138,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":139,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.505195342430317,"pr":0.3},{"t":141,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":142,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":142,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724279348029851,"pr":0.3},{"t":143,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":143,"r":796,"c":22,"a":"hold","s":0.19011658466667214,"ps":5,"e":3.974604486129982,"pr":0.4},{"t":144,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":144,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724296083907737,"pr":0.3},{"t":145,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":145,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":147,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":147,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475304083081471,"pr":0.3},{"t":147,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509143363231983,"pr":0.3},{"t":148,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":148,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475308317259754,"pr":0.3},{"t":149,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.72430946098353,"pr":0.3},{"t":150,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":150,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":150,"r":796,"c":22,"a":"retracted","s":0.20334127614885594,"ps":4,"e":6.2590789675674765,"pr":0.30000000000000004},{"t":151,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":153,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":153,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":153,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":154,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":155,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":156,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":156,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":156,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.5093751356948095,"pr":0.3},{"t":156,"r":796,"c":14,"a":"hold","s":0.20635415438740487,"ps":4,"e":4.7023208483318815,"pr":0.35000000000000003},{"t":157,"r":796,"c":22,"a":"hold","s":0.14088147701712478,"ps":5,"e":3.987978737549495,"pr":0.4},{"t":158,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475317917930615,"pr":0.3},{"t":159,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":160,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":160,"r":796,"c":14,"a":"hold","s":0.21422761452781605,"ps":5,"e":4.244560906729118,"pr":0.4},{"t":163,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":165,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":165,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384488549689,"pr":0.3},{"t":165,"r":796,"c":22,"a":"retracted","s":0.19099110879010797,"ps":4,"e":5.600914123273611,"pr":0.35000000000000003},{"t":166,"r":796,"c":14,"a":"hold","s":0.1647237600005734,"ps":5,"e":3.357526289383025,"pr":0.4},{"t":167,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":167,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384689128704,"pr":0.3},{"t":168,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318189125804,"pr":0.3},{"t":169,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":169,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":170,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":171,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":171,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.7243121624200555,"pr":0.3},{"t":173,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":173,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318195684139,"pr":0.3},{"t":173,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384859169366,"pr":0.3},{"t":174,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":174,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318196081621,"pr":0.3},{"t":175,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":175,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":176,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":176,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318196554626,"pr":0.3},{"t":177,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":177,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":177,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163352372,"pr":0.3},{"t":177,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318196690962,"pr":0.3},{"t":178,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163389666,"pr":0.3},{"t":179,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":179,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":179,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":179,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318196853201,"pr":0.3},{"t":180,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163434044,"pr":0.3},{"t":180,"r":796,"c":14,"a":"extend","s":0.2651551409168651,"ps":4,"e":5.050713850871938,"pr":0.35000000000000003},{"t":181,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":181,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163446837,"pr":0.3},{"t":181,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384880534853,"pr":0.3},{"t":181,"r":796,"c":14,"a":"extend","s":0.28538585887206924,"ps":4,"e":4.713660505293944,"pr":0.35000000000000003},{"t":182,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":182,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":182,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.7243121634557905,"pr":0.3},{"t":182,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318196955614,"pr":0.3},{"t":182,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.50938488092696,"pr":0.3},{"t":183,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":183,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":184,"r":796,"c":14,"a":"extend","s":0.28538585887206924,"ps":4,"e":4.1969577265228795,"pr":0.3},{"t":185,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163469517,"pr":0.3},{"t":185,"r":796,"c":14,"a":"extend","s":0.28538585887206924,"ps":4,"e":4.116031218249603,"pr":0.3},{"t":186,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":186,"r":796,"c":14,"a":"extend","s":0.28538585887206924,"ps":4,"e":4.05938266245831,"pr":0.3},{"t":186,"r":796,"c":22,"a":"hold","s":0.07815062610694226,"ps":5,"e":3.078912807565856,"pr":0.4},{"t":187,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":187,"r":796,"c":14,"a":"extend","s":0.28538585887206924,"ps":4,"e":4.019728673404405,"pr":0.3},{"t":188,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":188,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.47531819700279,"pr":0.3},{"t":189,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":190,"r":796,"c":14,"a":"hold","s":0.28538585887206924,"ps":4,"e":7.358144623019779,"pr":0.3},{"t":191,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":192,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":192,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":193,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476272,"pr":0.3},{"t":193,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881823786,"pr":0.3},{"t":194,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":194,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":194,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197008339,"pr":0.3},{"t":194,"r":796,"c":14,"a":"hold","s":0.29418314079815194,"ps":5,"e":4.393201504309696,"pr":0.4},{"t":195,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":197,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":198,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":198,"r":796,"c":22,"a":"hold","s":0.057596136732042294,"ps":5,"e":2.914476892574407,"pr":0.4},{"t":199,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":200,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476649,"pr":0.3},{"t":200,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197008993,"pr":0.3},{"t":200,"r":796,"c":22,"a":"retracted","s":0.08584729589848117,"ps":4,"e":2.9380336269501055,"pr":0.35000000000000003},{"t":201,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881840836,"pr":0.3},{"t":202,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":202,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476667,"pr":0.3},{"t":202,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009038,"pr":0.3},{"t":202,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841148,"pr":0.3},{"t":202,"r":796,"c":22,"a":"hold","s":0.10369777543078604,"ps":5,"e":3.2832900021644393,"pr":0.4},{"t":204,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":204,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":206,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":206,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":206,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.72431216347668,"pr":0.3},{"t":206,"r":796,"c":13,"a":"hold","s":0.1648955706314887,"ps":5,"e":2.4743555191816915,"pr":0.45000000000000007},{"t":207,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841754,"pr":0.3},{"t":207,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":5.383937483849765,"pr":0.3},{"t":208,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":208,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009075,"pr":0.3},{"t":209,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":209,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":211,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":211,"r":796,"c":22,"a":"hold","s":0.14692980479468823,"ps":4,"e":4.059508363932217,"pr":0.35000000000000003},{"t":212,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":212,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.134079047360359,"pr":0.3},{"t":212,"r":796,"c":22,"a":"retracted","s":0.1287952658570669,"ps":4,"e":4.4898704907887526,"pr":0.30000000000000004},{"t":213,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":213,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":213,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.179543074109926,"pr":0.3},{"t":213,"r":796,"c":13,"a":"retracted","s":0.21429930517120138,"ps":4,"e":5.464475861277992,"pr":0.35000000000000003},{"t":214,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":214,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":215,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":215,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":215,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":216,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":216,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":216,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":216,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841872,"pr":0.3},{"t":216,"r":796,"c":22,"a":"retracted","s":0.14716954185282796,"ps":4,"e":4.7126959692080455,"pr":0.30000000000000004},{"t":217,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":217,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":217,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.260155339939585,"pr":0.3},{"t":218,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.267796478915385,"pr":0.3},{"t":219,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":219,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":220,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":220,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":221,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":221,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":223,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":223,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":224,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":225,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":225,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":225,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":225,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.284157481671956,"pr":0.3},{"t":226,"r":796,"c":22,"a":"retracted","s":0.14191034533840355,"ps":4,"e":4.075186270795868,"pr":0.35000000000000003},{"t":227,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":227,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":228,"r":796,"c":13,"a":"retracted","s":0.1604852684790824,"ps":6,"e":4.116198245626322,"pr":0.5},{"t":228,"r":796,"c":22,"a":"hold","s":0.10920662736803469,"ps":5,"e":3.3273608176624547,"pr":0.4},{"t":229,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":230,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":231,"r":796,"c":13,"a":"hold","s":0.23109551805294432,"ps":5,"e":3.7924980111639837,"pr":0.4},{"t":232,"r":796,"c":13,"a":"hold","s":0.2413847409859465,"ps":5,"e":4.973575939051556,"pr":0.4},{"t":233,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":234,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":234,"r":796,"c":22,"a":"retracted","s":0.18718866711250398,"ps":4,"e":5.808922838032008,"pr":0.30000000000000004},{"t":235,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":235,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285584326743546,"pr":0.3},{"t":238,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":239,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":239,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":239,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":240,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":240,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285618832245516,"pr":0.3},{"t":241,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":241,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":241,"r":796,"c":22,"a":"hold","s":0.07948863426522092,"ps":4,"e":3.1736720831867604,"pr":0.35000000000000003},{"t":242,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":242,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285622387428352,"pr":0.3},{"t":243,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":243,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":243,"r":796,"c":13,"a":"hold","s":0.15579530366086713,"ps":5,"e":3.1902005953276595,"pr":0.4},{"t":245,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":245,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":245,"r":796,"c":13,"a":"retracted","s":0.16497991169285112,"ps":4,"e":4.479879182413278,"pr":0.35000000000000003},{"t":246,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":247,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":247,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":247,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285625229104813,"pr":0.3},{"t":248,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":248,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":249,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":249,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":249,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":249,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":250,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":250,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.28562560628026,"pr":0.3},{"t":252,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":252,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":252,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285625706705376,"pr":0.3},{"t":254,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":254,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":254,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285625755913682,"pr":0.3},{"t":255,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":255,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":255,"r":796,"c":13,"a":"hold","s":0.22376844234984486,"ps":5,"e":4.603422141990026,"pr":0.4},{"t":257,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285625786975702,"pr":0.3},{"t":258,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":258,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":259,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":260,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":260,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285625797629976,"pr":0.3},{"t":260,"r":796,"c":22,"a":"hold","s":0.1377758730461195,"ps":5,"e":3.8033557900418264,"pr":0.4},{"t":261,"r":796,"c":22,"a":"retracted","s":0.1377758730461195,"ps":4,"e":4.305562774410783,"pr":0.35000000000000003},{"t":262,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":262,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":262,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":262,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285625800466736,"pr":0.3},{"t":263,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.2856258012843895,"pr":0.3},{"t":264,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":264,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":264,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285625801856748,"pr":0.3},{"t":265,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":265,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":265,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":266,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":266,"r":796,"c":13,"a":"hold","s":0.11863189103715073,"ps":5,"e":3.445589096128949,"pr":0.4},{"t":267,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":267,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":268,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":268,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":268,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285625802871596,"pr":0.3},{"t":269,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":269,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":269,"r":796,"c":22,"a":"hold","s":0.14911606232539343,"ps":5,"e":3.6466362973213244,"pr":0.4},{"t":270,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":270,"r":796,"c":22,"a":"hold","s":0.12293584285819033,"ps":6,"e":3.730123040186847,"pr":0.5},{"t":271,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":271,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":272,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":272,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":273,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":273,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":274,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":275,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":275,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":275,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":276,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":276,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":276,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":278,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":278,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":278,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":279,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":279,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":280,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":280,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":280,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285625803187813,"pr":0.3},{"t":281,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":283,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":283,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":283,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285625803190728,"pr":0.3},{"t":284,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":284,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":284,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":284,"r":796,"c":22,"a":"hold","s":0.17614081325458408,"ps":4,"e":4.638505157699995,"pr":0.35000000000000003},{"t":285,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":285,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":286,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":287,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":287,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":287,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":287,"r":796,"c":13,"a":"hold","s":0.16080138092081533,"ps":4,"e":3.773036241236735,"pr":0.35000000000000003},{"t":288,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":288,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":288,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":289,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":289,"r":796,"c":22,"a":"hold","s":0.10537114268677523,"ps":5,"e":3.5596455062775365,"pr":0.4},{"t":292,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":293,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":293,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":294,"r":796,"c":17,"a":"extend","s":0.48328589001691385,"ps":4,"e":7.6213366136490555,"pr":0.3},{"t":294,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":294,"r":796,"c":20,"a":"extend","s":0.48880243732910816,"ps":4,"e":7.724312163476682,"pr":0.3},{"t":295,"r":796,"c":21,"a":"extend","s":0.47546347483977225,"ps":4,"e":7.475318197009079,"pr":0.3},{"t":296,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":297,"r":796,"c":19,"a":"extend","s":0.4792026716292354,"ps":4,"e":7.545116537079058,"pr":0.3},{"t":297,"r":796,"c":15,"a":"extend","s":0.4237170472415292,"ps":4,"e":6.509384881841875,"pr":0.3},{"t":298,"r":796,"c":16,"a":"extend","s":0.4457703669112664,"ps":4,"e":6.921046849010306,"pr":0.3},{"t":298,"r":796,"c":18,"a":"extend","s":0.40239271792135994,"ps":4,"e":6.11133073453205,"pr":0.3},{"t":298,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285625803192242,"pr":0.3},{"t":299,"r":796,"c":14,"a":"extend","s":0.4117299537424421,"ps":4,"e":6.285625803192245,"pr":0.3}];
|
|
const lines = text.split('\n');
|
|
const gridEl = document.getElementById('grid');
|
|
const charEls = [];
|
|
for (let r = 0; r < lines.length; r++) {
|
|
const row = [];
|
|
for (let c = 0; c < lines[r].length; c++) {
|
|
const s = document.createElement('span');
|
|
s.className = 'c';
|
|
s.textContent = lines[r][c];
|
|
row.push(s);
|
|
gridEl.appendChild(s);
|
|
}
|
|
charEls.push(row);
|
|
gridEl.appendChild(document.createTextNode('\n'));
|
|
}
|
|
let tick = -1, playing = false, iv;
|
|
function apply(t) {
|
|
for (const r of charEls) for (const e of r) e.className = 'c';
|
|
const active = new Map();
|
|
for (const p of passes) {
|
|
if (p.t > t) break;
|
|
const k = p.r+','+p.c;
|
|
if (p.a === 'died' || p.a === 'retracted') active.set(k, 'dead');
|
|
else if (p.ps > 16) active.set(k, 'strong');
|
|
else active.set(k, 'active');
|
|
}
|
|
for (const [k, cls] of active) {
|
|
const [r, c] = k.split(',').map(Number);
|
|
if (charEls[r]?.[c]) charEls[r][c].className = 'c ' + cls;
|
|
}
|
|
document.getElementById('info').textContent = 'tick ' + t + ' · ' + [...active.values()].filter(v=>v!=='dead').length + ' alive';
|
|
}
|
|
function play() {
|
|
if (playing) return;
|
|
playing = true;
|
|
document.getElementById('play-btn').textContent = 'pause';
|
|
const max = passes.length > 0 ? passes[passes.length-1].t : 0;
|
|
iv = setInterval(() => { tick++; if (tick > max) { pause(); return; } apply(tick); }, 900);
|
|
}
|
|
function pause() { playing = false; clearInterval(iv); document.getElementById('play-btn').textContent = 'play'; }
|
|
function reset() { pause(); tick = -1; for (const r of charEls) for (const e of r) e.className = 'c'; document.getElementById('info').textContent = 'neurameba'; }
|
|
document.getElementById('play-btn').addEventListener('click', () => playing ? pause() : play());
|
|
document.getElementById('reset-btn').addEventListener('click', reset);
|
|
setTimeout(play, 1000);
|
|
</script>
|
|
</body>
|
|
</html> |